利用栈压栈弹栈实现括号的左右匹配。
#include <stack>
class Solution {
public:
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param s string字符串
* @return bool布尔型
*/
bool isValid(string s) {
// write code here
stack<char> stc;
for (char a : s) {
if (a=='('||a=='{'||a=='[') {
stc.push(a);
}else {
if (a==')'&&(stc.size()==0||stc.top()!='(')) {
return false;
}else if (a=='}'&&(stc.size()==0||stc.top()!='{')) {
return false;
}else if (a==']'&&(stc.size()==0||stc.top()!='[')) {
return false;
}else {
stc.pop();
}
}
}
if (stc.size()==0) {
return true;
}else {
return false;
}
}
};