Valid Parentheses

Given a string containing just the characters '('')''{''}''[' and ']', determine if the input string is valid.

The brackets must close in the correct order, "()" and "()[]{}" are all valid but "(]" and "([)]" are not.

class Solution {
public:
    bool isValid(string s) {
        stack<char> st;
        for(int i = 0 ; i < s.size(); ++i) {
            switch (s[i]) {
                case '(':
                case '[':
                case '{': st.push(s[i]);
                          break;
                case ')': if (!st.empty() && st.top() == '(') {  // st.top()之前必须 判断 !st.empty()
                    st.pop();
                    break;
                } else {
                    return false;
                }
                case ']': if(!st.empty() && st.top() == '[') {
                    st.pop();
                    break;
                } else {
                    return false;
                }
                case '}': if(!st.empty() && st.top() == '{') {
                    st.pop();
                    break;
                } else {
                    return false;
                }
            }
        }
        return st.empty();
    }
};


你可能感兴趣的:(Valid Parentheses)