括号匹配(栈)

#include<stack>
#include<string.h>
using namespace std;
int main()
{
    int i,j;
    int len1,len2,flag=1;
    char exp[100];
    char res[100],ch;
    stack<char> sta;
    gets(exp);
    len1=strlen(exp);
    res[0]='(‘;
    len2=1;
    for(i=0;i<len1;i++)
    {
        ch=exp[i];
    //    printf(“%c  “,ch);
        if(ch=='(‘)
        {
                sta.push(ch);
        //    printf(“%c  “,ch);
        }
        else if(ch==’)’)
        {
            if(sta.empty())
            {
                printf(“1出错?!”);
            }
            else {
                if(sta.top()=='(‘)
                    sta.pop();
                else 
                    printf(“2出错?!”);
            }
        }
        else{
            res[len2]=exp[i];
            len2++;
        }
    }
    res[len2]=’)’;
    for(i=0;i<=len2;i++)
    {
            printf(“%c “,res[i]);
    }
    return 0;
}

    原文作者:括号匹配问题
    原文地址: https://blog.csdn.net/weixin_42568326/article/details/88724690
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞