当前位置:网站首页>2022-7-7 Leetcode 844.比较含退格的字符串

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

2022-07-07 11:36:00 weixin_51187533

在这里插入图片描述
在这里插入图片描述
方法一:栈


class Solution {
    
public:
    bool backspaceCompare(string s, string t) {
    
        string tmps = "", tmpt = "";
        for (auto& ch:s){
    
            if (ch == '#'){
    
                if (!tmps.empty())
                tmps.pop_back();
            }else tmps.push_back(ch);
        }

        for (auto& ch:t){
    
            if (ch == '#'){
    
                if (!tmpt.empty())
                tmpt.pop_back();
            }else tmpt.push_back(ch);
        }
        return tmps == tmpt;
    }
};

方法二:双指针

class Solution {
    
public:
    bool backspaceCompare(string S, string T) {
    
        int i = S.length() - 1, j = T.length() - 1;
        int skipS = 0, skipT = 0;

        while (i >= 0 || j >= 0) {
    
            while (i >= 0) {
    
                if (S[i] == '#') {
    
                    skipS++, i--;
                } else if (skipS > 0) {
    
                    skipS--, i--;
                } else {
    
                    break;
                }
            }
            while (j >= 0) {
    
                if (T[j] == '#') {
    
                    skipT++, j--;
                } else if (skipT > 0) {
    
                    skipT--, j--;
                } else {
    
                    break;
                }
            }
            if (i >= 0 && j >= 0) {
    
                if (S[i] != T[j]) {
    
                    return false;
                }
            } else {
    
                if (i >= 0 || j >= 0) {
    
                    return false;
                }
            }
            i--, j--;
        }
        return true;
    }
};

作者:demigodliu
链接:https://leetcode.cn/problems/backspace-string-compare/solution/shuang-zhi-zhen-bi-jiao-han-tui-ge-de-zi-8fn8/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
原网站

版权声明
本文为[weixin_51187533]所创,转载请带上原文链接,感谢
https://blog.csdn.net/weixin_51187533/article/details/125653589