20-Valid Parentheses(有效的括号)

2019-07-14  本文已影响0人  CristianoC

题目

给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效。有效字符串需满足:

示例 1:
输入: "()"
输出: true

示例 2:
输入: "()[]{}"
输出: true

示例 3:
输入: "(]"
输出: false

示例 4:
输入: "([)]"
输出: false

示例 5:
输入: "{[]}"
输出: true

看到这道题目,我们自然想到使用栈来解决这个问题。大致思路如下:

class Solution {
public:
    bool isValid(string s) {
        map<char, char> map;
        map[')'] = '(';
        map[']'] = '[';
        map['}'] = '{';
        stack<char>st;
        while(s.length()%2==0){
            for(char c:s){
                if(map.count(c)>0){
                    if(!st.empty() && map[c]==st.top())
                        st.pop();
                    else 
                        return false;
                }
                else
                    st.push(c);
            }
            if(st.empty())
                return true;
            return false;
        }
        return false;
    }
};
上一篇下一篇

猜你喜欢

热点阅读