括号匹配问题

石 *新 202314160221

问题:

解题思路:

  1. 运用stack存入左括号
  2. 当发现当前的str[i]为任意一种右括号的时候,看栈顶是否匹配,如果匹配则将当前栈顶退出,否则直接输出erroe 退出程序
  3. 如何最后判断栈为空,则说明匹配成功,否则匹配不成功

流程图:

执行代码:

#include<iostream>
#include<cstring>
using namespace std;
const int n=1e6;
char stack[n];
char str[n];
int main()
{ //
    int hh=0,tt=0;
    cin >> str;
    for(int i=0;i<strlen(str);i++)
    {
        if(tt!=hh)
        {
            if(str[i]==')')
            {
                if(stack[tt-1]=='(')
                    tt--;
                else 
                    cout << "ERROE"<<i <<  endl;
            }
            else if(str[i]==']')
            {
                if(stack[tt-1]=='[')
                    tt--;
                else 
                    cout << "ERROE"<< endl;
                    
            }
            else  if(str[i]=='}')
            {
                if(stack[tt-1]=='{')
                    tt--;
                else 
                    cout << "ERROE"<< endl;
            }
            else 
            {
                stack[tt++]=str[i]; //进栈 不执行的
            }

            
        }
        else 
            stack[tt++]=str[i];//进栈

    }
if(tt==hh)
    cout << "yes";
else 
    cout << "error" ;
cin.get();
cin.get();
}

运行结果截图:

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值