首页 > 其他 > 详细

LeetCode Valid Parentheses

时间:2014-10-25 14:18:45      阅读:188      评论:0      收藏:0      [点我收藏+]

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 public class Solution {
 2     public boolean isValid(String s) {
 3         if (s.equals("")) {
 4             return true;
 5         }
 6         
 7         Stack<Character> stack=new Stack<>();
 8         stack.push(‘s‘);
 9         for (char c : s.toCharArray()) {
10             if (c==‘(‘ || c==‘[‘ || c==‘{‘) {
11                 stack.push(c);
12             }else {
13                 if (c==‘)‘ && stack.pop()!=‘(‘) {
14                     return false;
15                 }
16                 if (c==‘]‘ && stack.pop()!=‘[‘) {
17                     return false;
18                 }
19                 if (c==‘}‘ && stack.pop()!=‘{‘) {
20                     return false;
21                 }
22             }
23         }
24         if (stack.pop()!=‘s‘) {
25             return false;
26         }
27         return true;
28     }
29 }

 

LeetCode Valid Parentheses

原文:http://www.cnblogs.com/birdhack/p/4049978.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!