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

LeetCode Valid Parentheses

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

标签:style   blog   color   io   os   ar   for   sp   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 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

标签:style   blog   color   io   os   ar   for   sp   div   

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

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