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

20. Valid Parentheses(用栈实现括号匹配)

时间:2019-05-13 23:25:40      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:ide   array   color   stat   []   output   order   term   NPU   

Given a string containing just the characters ‘(‘‘)‘‘{‘‘}‘‘[‘ and ‘]‘, determine if the input string is valid.

An input string is valid if:

  1. Open brackets must be closed by the same type of brackets.
  2. Open brackets must be closed in the correct order.

Note that an empty string is also considered valid.

Example 1:

Input: "()"
Output: true

Example 2:

Input: "()[]{}"
Output: true

Example 3:

Input: "(]"
Output: false

Example 4:

Input: "([)]"
Output: false

Example 5:

Input: "{[]}"
Output: true

方法一:hashmap+栈
class Solution {
    public static boolean isValid(String s) {
        HashMap<Character,Character> map=new HashMap<Character,Character>();
        Stack<Character> stack=new Stack<Character>();
        map.put(‘)‘,‘(‘);
        map.put(‘]‘,‘[‘);
        map.put(‘}‘,‘{‘);
        int N=s.length();
        char [] nums=s.toCharArray();
        for(int i=0;i<N;i++){
            if(!stack.isEmpty() && map.get(nums[i])==stack.peek()){
                stack.pop();
            }else{
                stack.push(nums[i]);
            }

        }
        return stack.isEmpty() ? true :false;
    }
}

方法二:栈

class Solution {
    public static boolean isValid(String s) {
        Stack<Character> stack=new Stack<Character>();  
        int N=s.length();
        char [] nums=s.toCharArray();
        for(int i=0;i<N;i++){
            if(nums[i]==‘(‘||nums[i]==‘[‘||nums[i]==‘{‘){
                stack.push(nums[i]);
            }else{
                if(stack.isEmpty()){
                    return false;
                }
                
                int cr=stack.pop();
                boolean a= cr==‘(‘ && nums[i]!=‘)‘;
                boolean b= cr==‘[‘ && nums[i]!=‘]‘;
                boolean c= cr==‘{‘ && nums[i]!=‘}‘;
                if(a||b||c){
                    return false;
                }
            }
            
        }
        return stack.isEmpty() ;
    }
}

 

20. Valid Parentheses(用栈实现括号匹配)

标签:ide   array   color   stat   []   output   order   term   NPU   

原文地址:https://www.cnblogs.com/shaer/p/10859386.html

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