惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

有赞技术团队
有赞技术团队
M
MIT News - Artificial intelligence
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
量子位
S
SegmentFault 最新的问题
V
Visual Studio Blog
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News
D
Docker
J
Java Code Geeks
博客园 - 三生石上(FineUI控件)
博客园 - Franky
Recent Announcements
Recent Announcements
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
V
V2EX

博客园 - 司徒正美

leetcode 91. Decode Ways leetcode 1214 Two Sum BSTs leetcode 213 House Robber II leetcode 198 House Robber I leetcode 986. Interval List Intersections leetcode 869. Reordered Power of 2 leetcode 925. Long Pressed Name leetcode 457. Circular Array Loop leetcode 1093. Statistics from a Large Sample leetcode 881. Boats to Save People leetcode 977. Squares of a Sorted Array leetcode 1032. Stream of Characters leetcode 1023. Camelcase Matching leetcode 745 Prefix and Suffix Search leetcode 720. Longest Word in Dictionary leetcode 692. Top K Frequent Words leetcode 677. Map Sum Pairs leetcode 676. Implement Magic Dictionary leetcode 648. Replace Words
leetcode 844. Backspace String Compare
司徒正美 · 2020-01-01 · via 博客园 - 司徒正美

比较两个带退格键的字符串

方法1, 从后往前遍历,记录要忽略掉的字符

var backspaceCompare = function(S, T) {
    return getMormalString(S) === getMormalString(T)
};

function getMormalString(S){
     var eat = 0, sb = []
     for(var i = S.length-1; i>=0 ; i--){
         if(S[i] == '#'){
             eat++
         }else{
             if(eat > 0){
                 eat--
             }else{
                 sb.push(S[i])
             }
         }
     }
    return sb.join('')
}

方法2, 使用栈,从前往后处理

var backspaceCompare = function(S, T) {
     if (!S || !T || S.length === 0 || T.length === 0) {
        return false;
    }
    
    let stackS = [];
    let stackT = [];
    
    for (let i = 0; i < S.length; i++) {
        if (S[i] !== '#') {
            stackS.push(S[i]);
        } else {
            stackS.pop();
        }
    }
    
    for (let i = 0; i < T.length; i++) {
        if (T[i] !== '#') {
            stackT.push(T[i]);
        } else {
            stackT.pop();
        }
    }
    
    if (stackS.length !== stackT.length) {
        return false;
    } else {
        for (let i = 0; i < stackS.length; i++) {
            if (stackS[i] !== stackT[i]) {
                return false;
            }
        }
    }
    return true;
}

方法3,使用归并排序合并数组的形态,从后往前比较

var backspaceCompare = function(S, T) {
    let sPointer = S.length - 1;
    let tPointer = T.length - 1;
    let sBackspaces = 0;
    let tBackspaces = 0;

    while (sPointer >= 0 || tPointer >= 0) {
        if (S[sPointer] === '#') {
            sBackspaces++;
            sPointer--;
            continue;
        }
        
        if (T[tPointer] === '#') {
            tBackspaces++;
            tPointer--;
            continue;
        }
        
        if (sBackspaces > 0) {
            sBackspaces--;
            sPointer--;
            continue
        }

        if (tBackspaces > 0) {
            tBackspaces--;
            tPointer--;
            continue;
        }

        if (S[sPointer] !== T[tPointer]) {
            return false;
        }
        
        sPointer--;
        tPointer--;
    }
    
    return true;
};