首页 > 其他 > 详细

Valid Parentheses

时间:2015-03-13 22:09:29      阅读:291      评论:0      收藏:0      [点我收藏+]

Valid Parentheses

问题:

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) {
        if(s == null || s.length() == 0) return true;
        Stack<Character> stack = new Stack<Character>();
        for(int i = 0; i < s.length(); i++)
        {
            char c = s.charAt(i);
            if(isRight(c))
            {
                if(stack.isEmpty()) return false;
                char left = stack.pop();
                if(!isMatch(left,c)) return false;
            }
            else
            {
                stack.push(c);
            }
        }
        return stack.isEmpty();
    }
    public boolean isMatch(char left, char right)
    {
        if((left==‘(‘&&right==‘)‘)||(left==‘[‘&&right==‘]‘)||(left==‘{‘&&right==‘}‘))   return true;
        return false;
    }
    public boolean isRight(char c)
    {
        if(c == ‘)‘ || c == ‘]‘ || c == ‘}‘)    return true;
        return false;
    }
}
View Code

 

Valid Parentheses

原文:http://www.cnblogs.com/sunshisonghit/p/4336041.html

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