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

Valid Parentheses

时间:2014-08-10 15:23:20      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   ar   div   

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.

 1 class Solution {
 2 public:
 3     bool isValid(string s) {
 4         stack<char> S;
 5         for(int i = 0; i < s.length(); i++){
 6             if(!S.empty()){
 7                 char top = S.top();
 8                 if(pair(top,s[i])) S.pop();
 9                 else S.push(s[i]);
10             }else S.push(s[i]);
11         }
12         if(S.empty()) return true;
13         return false;
14     }
15     bool pair(char l, char r){
16         if(l == ( && r == )) return true;
17         if(l == [ && r == ]) return true;
18         if(l == { && r ==  }) return true;
19         return false;
20     }
21 };

 

Valid Parentheses,布布扣,bubuko.com

Valid Parentheses

标签:style   blog   color   os   io   for   ar   div   

原文地址:http://www.cnblogs.com/Kai-Xing/p/3902745.html

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