码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode Valid Parentheses

时间:2014-06-25 12:44:56      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   string   

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) {
        if(s.length()%2) return false;
        stack<char> bracket;
        for(int i = 0 ; i < s.length(); ++ i){
            if(s[i]==( || s[i]=={ || s[i] == [) bracket.push(s[i]);
            else{
                if(bracket.empty()) return false;
                else{
                    if((s[i] == ) && bracket.top() == () || 
                       (s[i] == } && bracket.top() == {) ||
                       (s[i] == ] && bracket.top() == [))
                       bracket.pop();
                     else return false;
                }
            }
        }
        if(bracket.empty()) return true;
        else return false;
    }
};

 

Leetcode Valid Parentheses,布布扣,bubuko.com

Leetcode Valid Parentheses

标签:style   class   blog   code   color   string   

原文地址:http://www.cnblogs.com/xiongqiangcs/p/3807035.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!