首页 > 其他 > 详细

20. Valid Parentheses

时间:2015-05-13 08:45:23      阅读:82      评论: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.

用栈实现即可。

public class Solution {
  public boolean isValid(String s) {
    Stack<Character> stack = new Stack<>();
    for (char c : s.toCharArray()) {
      if (c == ‘)‘ || c == ‘}‘ || c== ‘]‘) {
        if (stack.isEmpty()) {
          return false;
        } else {
          char a = stack.pop();
          if ((c == ‘)‘ && a != ‘(‘) || (c == ‘}‘ && a != ‘{‘) || (c == ‘]‘ && a != ‘[‘)) {
            return false;
          }
        }
      } else {
        stack.push(c);
      }
    }
    return stack.isEmpty();
  }
}

20. Valid Parentheses

原文:http://www.cnblogs.com/shini/p/4499291.html

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