leetcode20. Valid Parentheses

Posted brucemengbm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode20. Valid Parentheses相关的知识,希望对你有一定的参考价值。

@requires_authorization
@author johnsondu
@create_time 2015.7.13 11:03
@url [valid parentheses](https://leetcode.com/problems/valid-parentheses/)
/*****************
 * 类别: 栈模拟推断
 * 时间复杂度: O(n)
 * 空间复杂度: O(n)
 ****************/
class Solution {
public:
    bool isValid(string s) {
        stack<char> st;
        int len = s.size();
        for(int i = 0; i < len; i ++){
            if(s[i] == ‘]‘ || s[i] == ‘}‘ || s[i] == ‘)‘){
                if(st.empty()){
                    return false;
                }
            }
            else{
                st.push(s[i]);
                continue;
            }
            if(s[i] == ‘]‘){
                char ch = st.top();
                st.pop();
                if(ch != ‘[‘) return false;
                continue;
            }
            if(s[i] == ‘)‘){
                char ch = st.top();
                st.pop();
                if(ch != ‘(‘) return false;
                continue;
            }
            if(s[i] == ‘}‘){
                char ch = st.top();
                st.pop();
                if(ch != ‘{‘) return false;
                continue;
            }
        }
        if(st.empty()) return true;
        else return false;
    }
};

以上是关于leetcode20. Valid Parentheses的主要内容,如果未能解决你的问题,请参考以下文章

#Leetcode# 20.Valid Parentheses

LeetCode - 20. Valid Parentheses

leetcode20. Valid Parentheses

[LeetCode]20. Valid Parentheses

[LeetCode]20 Valid Parentheses 有效的括号

LeetCode OJ 20Valid Parentheses