括号匹配的检验

#include<iostream>
#include<cstdio>
#define MAXSIZE 100
#define OK 1
#define ERROR 0
using namespace std;

typedef struct      //定义栈
{
    char *base;
    char *top;
    int stacksize;
}SqStack;

int InitStack(SqStack &S)      //初始化栈
{
    S.base=new char[MAXSIZE];
    if(!S.base) return 0;
    S.top=S.base;
    S.stacksize=MAXSIZE;
    return OK;
}

int Push(SqStack &S,char e)     //压栈
{
    if(S.top-S.base==S.stacksize) return ERROR;
    *S.top++=e;
    return OK;
}

int Pop(SqStack &S,char &e)     //出栈
{
    if(S.top==S.base) return ERROR;
    e=*--S.top;
    return OK;
}

/*int StackEmpty(SqStack &S)
{
    if(S.top==S.base) return 1;
    else return 0;
}*/

char GetTop(SqStack S)      //取栈顶元素
{
    if(S.top!=S.base)
        return *(S.top-1);
}

int Matching(SqStack &S)    //检验括号是否匹配
{
    char ch,x;
    int flag=1;
    cin>>ch;
    while(ch!='#'&&flag)
    {
        switch(ch)
        {
            case '(':
            case '[':
                Push(S,ch);
                break;
            case ']':
                if((S.top!=S.base)&&GetTop(S)=='[')
                    Pop(S,x);
                else flag=0;
                break;
            case ')':
                if((S.top!=S.base)&&GetTop(S)=='(')
                    Pop(S,x);
                else flag=0;
                break;
        }
        cin>>ch;
    }
    if((S.top==S.base)&&flag) cout<<"success"<<endl;
    else cout<<"failed"<<endl;
    return 0;
}

int main()
{
    SqStack S;
    InitStack(S);
    Matching(S);

    return 0;
}



  • 0
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值