20. 有效的括号
日期:2022/8/1
题目描述:给定一个只包括 ‘(’,‘)’,‘{’,‘}’,‘[’,‘]’ 的字符串 s ,判断字符串是否有效。
有效字符串需满足:
左括号必须用相同类型的右括号闭合。
左括号必须以正确的顺序闭合。
示例:
输入:s = "()"
输出:true
输入:s = "()[]{}"
输出:true
输入:s = "(]"
输出:false
输入:s = "([)]"
输出:false
输入:s = "{[]}"
输出:true
思路:
栈+哈希表
代码+解析:
class Solution {
public:
bool isValid(string s) {
map<char,char> match;
match['('] = ')';
match['{'] = '}';
match['['] = ']';
stack<char> st;
for(int i=0; i<s.size(); i++){
if(s[i] == '(' || s[i] == '{' || s[i] == '[')st.push(s[i]);
else{
if(st.empty() || match[st.top()] != s[i]) return false;
st.pop();
}
}
if(!st.empty()) return false;
return true;
}
};