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

LeetCode: Valid Parentheses 题解

时间:2014-06-18 12:56:59      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   color   

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.

题解: 典型的STL stack 应用。注意边界条件。

 1 class Solution {
 2 public:
 3     bool isValid(string s) {
 4         stack<char> st;
 5         if(s.size()<=1 || s.size()%2) return false;
 6 
 7         for(int i=0;i<s.size();i++)
 8         {
 9             if(s[i]==( || s[i]==[ || s[i]=={) st.push(s[i]);
10             else if(st.empty())
11             {
12                 return false;
13             }
14             else
15             {
16                 if(  (s[i]==) && st.top()==() ||
17                      (s[i]==] && st.top()==[) ||
18                      (s[i]==} && st.top()=={) )
19                      st.pop();
20                 else
21                     return false;
22             }
23         }
24         if(!st.empty()) return false;
25         else return true;        
26     }
27 };

转载请注明出处: http://www.cnblogs.com/double-win/ 谢谢!

LeetCode: Valid Parentheses 题解,布布扣,bubuko.com

LeetCode: Valid Parentheses 题解

标签:style   class   blog   code   http   color   

原文地址:http://www.cnblogs.com/double-win/p/3791931.html

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