Leetcode 844. 比较含退格的字符串

Leetcode 844. 比较含退格的字符串

思路

用两个栈:将字符串入栈,若是#则将栈里的字符出栈,之后再比较栈内元素是否相等。

代码

    bool backspaceCompare(string S, string T) {
        stack<char> st1, st2;

        //将两个字符串入栈
        for(int i=0;i<S.length();i++){ 
            if(S[i]!='#') st1.push(S[i]); //字符入栈
            else{
                if(!st1.empty()) st1.pop();  //遇到#且栈不为空则出栈
                else continue;
            }
        }

        for(int j=0;j<T.length();j++){
            if(T[j]!='#') st2.push(T[j]);
            else{
                if(!st2.empty()) st2.pop();
                else continue;
            }
        }

        //比较两个栈里的元素,若相等则都出栈,若不等则跳出循环
        while(!st1.empty() && !st2.empty()){
            if(st1.top()==st2.top()){
                st1.pop();
                st2.pop();
            }
            else break;
        }

        //最后看两个栈是否都为空,若是则相等
        if(st1.empty() && st2.empty()) return true;
        else return false;
    }

总结

看解题里好像可以不用栈,直接用字符串就能解决

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值