给定一个只包括 ‘(‘,‘)‘,‘{‘,‘}‘,‘[‘,‘]‘ 的字符串 s ,判断字符串是否有效。
有效字符串需满足:
左括号必须用相同类型的右括号闭合。
左括号必须以正确的顺序闭合。
//有效的括号
class Solution {
public:
bool isValid(string s) {
int i, n=s.size();
bool flag=false;
stack<char> st;
if(s[0]==‘)‘ || s[0]==‘]‘ || s[0]==‘}‘){
return false;
}
for(i=0; i<n; i++){
if(s[i]==‘(‘ || s[i]==‘[‘ || s[i]==‘{‘){
st.push(s[i]);
}else{
if(st.empty()){
return false;
}
if(s[i]==‘)‘){
if(st.top()!=‘(‘){
return false;
}else{
st.pop();
}
}
if(s[i]==‘]‘){
if(st.top()!=‘[‘){
return false;
}else{
st.pop();
}
}
if(s[i]==‘}‘){
if(st.top()!=‘{‘){
return false;
}else{
st.pop();
}
}
}
}
if(st.empty()){
return true;
}else{
return false;
}
}
};
}
原文:https://www.cnblogs.com/karkinos/p/14487309.html