【LeetCode】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.

二、解题思路

这个问题是括号匹配,显然要用到栈类解题。

  1. 每次字符都要与栈顶元素比较,如果可以匹配,则移除栈顶元素
  2. 不能匹配,则将字符压入栈中
  3. 最后全部字符都遍历(与栈顶元素比较)一遍之后,看栈中是否还有元素,若有,则返回false,反之,返回true

三、我的代码

import java.util.Stack;
public class Solution {
    public boolean isValid(String s) {
        Stack<Integer> stack = new Stack<Integer>();
        for(int i = 0; i <= s.length() - 1; i++){
            String goal = s.substring(i,i+1);
            int num=0;
            if("{".equals(goal))
                num = -1;
            if("}".equals(goal))
                num = 1;
            if("(".equals(goal))
                num = -2;
            if(")".equals(goal))
                num = 2;
            if("[".equals(goal))
                num = -3;
            if("]".equals(goal))
                num = 3;
            if(num == 0)
                return false;
            if(stack.isEmpty())
                stack.push(num);
            else{
                if(num+stack.peek()==0)
                    stack.pop();
                else
                    stack.push(num);
            }
        }
        if(stack.isEmpty())
            return true;
        return false;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值