数据结构8:利用栈进行匹配操作

代码不全只是自己记录学习,借鉴:https://blog.csdn.net/javazejian/article/details/52953190;强烈推荐此大神博客。。

public class CheckExpression {
 
    public static String isValid(String expstr)
    {
        //创建栈
        LinkedStack<String> stack = new LinkedStack<>();
 
        int i=0;
        while(i<expstr.length())
        {
            char ch=expstr.charAt(i);
            i++;
            switch(ch)
            {
                case '(': stack.push(ch+"");//左括号直接入栈
                    break;
                case ')'://遇见右
                    // 括号左括号直接出栈
                    if (stack.isEmpty() || !stack.pop().equals("(")) {//stack.pop()就执行的  (  的出栈操作
 
                        System.out.println("aaaaaaaaaaaaaaa");
 
                        return "(";   //错误后直接跳出循环返回数据
                    }
 
            }
        }
        //最后检测是否为空,为空则检测通过
        if(stack.isEmpty())
            return "check pass!";
        else
            return "check exception!";
    }
 
    public static void main(String args[])
    {
        String expstr="((5-3)*8-2";
        System.out.println(expstr+"  "+isValid(expstr));
    }
}









执行结果

((5-3)*8-2  check exception!



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值