如下:
class Solution {public: bool isValid(string s) { stack<char> st; for(auto c : s){ if(c == '(') st.push(')'); else if(c == '[') st.push(']'); else if(c == '{') st.push('}'); else { if(st.empty() || st.top() != c) return false; st.pop(); } } return st.empty(); }};新闻热点
疑难解答