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

20. Valid Parentheses

时间:2015-05-13 08:47:31      阅读:145      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!