美文网首页
leetcode-day9-长按键入[925题]

leetcode-day9-长按键入[925题]

作者: 孙静静 | 来源:发表于2020-10-22 00:45 被阅读0次
image.png

这里思想比较麻烦,先转为队列,再利用队列的先进先出,从字符串的第一位开始将两者比较完的的元素删除, 同时记录删除的元素,以便于判断typed字符串里面重复的字符,如果有重复字符,则删除该字符

/**
 * @param {string} name
 * @param {string} typed
 * @return {boolean}
 */
var isLongPressedName = function(name, typed) {
    if(typed === null || typed.length < name.length){
        return false;
    }
    let queue1 = [],queue2 = [];
    for(let i =0; i<name.length;i++){ // 转为队列
        queue1.push(name[i]);
    }
    for(let i =0; i<typed.length;i++){ // 转为队列
        queue2.push(typed[i]);
    }
    let queue2_del = '', queue1_del = '';
    while(queue2.length > 0){
        if(queue2[0] === queue2_del && queue1[0] !== queue1_del){  // 删除typed中重复字符
            queue2_del = queue2[0];
            queue2.shift();
            continue;
        }
        queue1_del = queue1[0];
        queue2_del = queue2[0];
        if(queue1_del === queue2_del){ // 两者相等,同时删除
            queue1.shift();
            queue2.shift();
        } else {
            return false;
        }
    }
    if(queue1.length > 0) return false;
    return true;
};

该题还有个双指标法,比较适合使用,后面有时间补充

相关文章

  • leetcode-day9-长按键入[925题]

    这里思想比较麻烦,先转为队列,再利用队列的先进先出,从字符串的第一位开始将两者比较完的的元素删除, 同时记录删除的...

  • LeetCode 925.Long Pressed Name 长

    925.长按键入 题面 你的朋友正在使用键盘输入他的名字name。偶尔,在键入字符c时,按键可能会被长按,而字符可...

  • JavaScript实现LeetCode第925题:长按键入

    文章首次发表在JavaScript实现LeetCode第925题:长按键入 题目描述 你的朋友正在使用键盘输入他的...

  • 925. 长按键入

    925. 长按键入 你的朋友正在使用键盘输入他的名字 name。偶尔,在键入字符 c 时,按键可能会被长按,而字符...

  • 925. 长按键入

    思路: 就是利用双指针,因为typed字符串长度一定 大于或者等于name ,条件才能成立

  • 925. 长按键入

  • 925. 长按键入

    1.题目 你的朋友正在使用键盘输入他的名字 name。偶尔,在键入字符 c 时,按键可能会被长按,而字符可能被输入...

  • 每日一题-925. 长按键入

    你的朋友正在使用键盘输入他的名字 name。偶尔,在键入字符 c 时,按键可能会被长按,而字符可能被输入 1 次或...

  • Leetcode 925. 长按键入

    925. 长按键入 URL 问题:你的朋友正在使用键盘输入他的名字 name。偶尔,在键入字符 c 时,按键可能会...

  • leetcode_925长按键入

    双指针,name和typed相同字符则一起向右移动,每次如果typed的字符重复则typed右移,name不动,n...

网友评论

      本文标题:leetcode-day9-长按键入[925题]

      本文链接:https://www.haomeiwen.com/subject/abjemktx.html