1 Star 0 Fork 1

saigon/Algorithms

forked from charlieshu/Algorithms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
表达式括号匹配_合法字符串.cpp 829 Bytes
一键复制 编辑 原始数据 按行查看 历史
charlie 提交于 2024-01-09 00:01 . move from github to gitee
#include <iostream>
#include <string>
#include <stack>
#include <map>
using namespace std;
int main(){
string n,c = "true";
map<char,char> braces; //={{')','('},{']','['},{'}','{'}};
braces[')']='(';
braces[']']='[';
braces['}']='{';
char m;
stack<char> s;
s.push('u');
cin>>n;
for(int i=0;i < n.length()-1;i++){
m = n[i];
if(m == '(' || m == '[' || m == '{'){
s.push(m);
//cout<<"push "<<m<<" and now top="<<s.top()<<" size="<<s.size() <<endl;
}
else if(m == ')' || m == ']' || m == '}'){
if(braces[m] != s.top()){
c = "false";
break;
}else{
// cout<<"pop "<<s.top()<<" and now size=";
s.pop();
// cout<<s.size()<<endl;
}
}
}
if(c == "false" || s.size() != 1){
cout<<"NO";
}
else{
cout<<"YES";
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/saigonshu/algorithm.git
git@gitee.com:saigonshu/algorithm.git
saigonshu
algorithm
Algorithms
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385