hrbust 1054 、、、括号匹配

出入一个字符串  里面只包含{}()[]  六种括号   判断是否匹配合法

例: (){}({})    合法

({)}    不合法

 

这里采用堆栈思想,遍历字符串,每遍历到一个字符,与栈顶字符比较。如果匹配,将栈顶字符删除;否则入栈。

我用数组模拟的栈操作,比较方便。

代码如下:

 

#include <iostream>
#include <string.h>
using namespace std;
int main()
{
    char c[101],h[101];
    int n,top,jl;
    cin>>n;
    cin.get();
    while(n--)
    {
        cin.getline(c,100);
        top=0;
        for(int i=0;i<strlen(c);i++)
        {
            if(top==0) h[top++]=c[i];
            else
            {
                jl=h[top-1];
                if(c[i]-jl==1||c[i]-jl==2) top--;
                else h[top++]=c[i];
            }
        }
        if(top==0) cout<<"Valid\n";
        else cout<<"Invalid\n";

    }
}

你可能感兴趣的:(c)