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

20. Valid Parentheses

时间:2017-01-04 00:00:04      阅读:404      评论:0      收藏:0      [点我收藏+]

标签:ons   har   san   元素   float   visible   mil   tle   .com   

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.

Subscribe to see which companies asked this question

分析:

遇到‘(‘, ‘{‘, ‘[‘ 就入栈,遇到‘)‘, ‘}‘, ‘]‘ 就和栈顶元素进行对比,相同则继续,不同返回false
其他false情形:
当对比时,栈已经empty了

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
class Solution {
public:
    bool isValid(string s) {
        stack<char> stk;
        int len = s.size();
        if(0 >= len) return false;
        for(int i = 0; i < len; ++i){
            if(s[i] == ‘(‘ || s[i] == ‘[‘ || s[i] == ‘{‘){
                stk.push(s[i]);
            }
            else{
               if(stk.empty()){
                   return false;
               }
               else{
                   if(match(stk.top(),s[i])){
                       stk.pop();
                   }
                   else{
                       return false;
                   }
               }
            }
        }
        if(stk.empty())
            return true;
        else 
            return false;
    }
    bool match(char c1, char c2){
        switch(c1){
            case ‘(‘:
            return c2 == ‘)‘;
            case ‘{‘:
            return c2 == ‘}‘;
            case ‘[‘:
            return c2 ==‘]‘;
            default:
            return false;
        }
    }
};





20. Valid Parentheses

标签:ons   har   san   元素   float   visible   mil   tle   .com   

原文地址:http://www.cnblogs.com/zhxshseu/p/13d93dcf02420ae4542b294a754d818d.html

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