题解 | #有效括号序列#

有效括号序列

https://www.nowcoder.com/practice/37548e94a270412c8b9fb85643c8ccc2

class Solution {
  public:
    /**
     *
     * @param s string字符串
     * @return bool布尔型
     */
    bool isValid(string s) {
        // write code here
        if (s.length() % 2 != 0)
            return false;
        stack<char> st;
        for (char& i : s) {
            if (i == '(' || i == '[' || i == '{')
                st.push(i);
            else if (st.empty())
                return false;
            else {
                if ((i == ']' && st.top() == '[') ||
                    (i == ')' && st.top() == '(') ||
                    (i == '}' && st.top() == '{'))
                    st.pop();
                else
                    return false;
            }

        }
        if (st.empty())
            return true;
        else
            return false;
    }
};

全部评论

相关推荐

hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务