首页 > 其他 > 详细

【leetcode 】20. Valid Parentheses

时间:2016-04-09 21:48:14      阅读:224      评论:0      收藏:0      [点我收藏+]

这题需要注意:

  1. 栈的空指针
  2. 全局变量stack需要clear
  3. 输入结束时栈长度不为空

 

 

public class Solution {
    private static final Stack<Character> stack = new Stack<Character>();
    
    public boolean isValid(String s) {
        stack.clear();
        for (int i = 0; i < s.length(); ++i) {
            char c = s.charAt(i);
            if (!isLeft(c)) {
                if (stack.isEmpty()) {
                    return false;
                }
                if (!isPair(stack.pop(), c)) {
                    return false;
                }
            } else {
                stack.push(c);
            }
        }
        return stack.isEmpty();
    }
    
    private boolean isLeft(char c) {
        return c == ‘(‘ || c == ‘[‘ || c == ‘{‘;
    }
    
    private boolean isPair(char left, char right) {
        if (left == ‘(‘) {
            return right == ‘)‘;
        } else if (left == ‘[‘) {
            return right == ‘]‘;
        } else {
            return right == ‘}‘;
        }
    }
}

 

【leetcode 】20. Valid Parentheses

原文:http://www.cnblogs.com/lanhj/p/5372713.html

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