你的朋友正在使用键盘输入他的名字 name。偶尔,在键入字符 c 时,按键可能会被长按,而字符可能被输入 1 次或多次。
你将会检查键盘输入的字符 typed。如果它对应的可能是你的朋友的名字(其中一些字符可能被长按),那么就返回 True。
示例 1:
输入:name = “alex”, typed = “aaleex” 输出:true 解释:‘alex’ 中的 ‘a’ 和 ‘e’ 被长按。
示例 2:
输入:name = “saeed”, typed = “ssaaedd” 输出:false 解释:‘e’ 一定需要被键入两次,但在 typed 的输出中不是这样。
示例 3:
输入:name = “leelee”, typed = “lleeelee” 输出:true
示例 4:
输入:name = “laiden”, typed = “laiden” 输出:true 解释:长按名字中的字符并不是必要的。
提示:
name.length <= 1000typed.length <= 1000name 和 typed 的字符都是小写字母。双指针分别遍历两个字符串,注意处理各种case即可:
class Solution { public: bool isLongPressedName(string name, string typed) { int len1 = name.length(); int len2 = typed.length(); if(len1 > len2) return false; if(len1 == len2) return name == typed; if(name[0] != typed[0]) return false; int i, j; i = j = 1; while(i < len1 && j < len2){ if(name[i] != typed[j] && typed[j] != typed[j-1]) return false; if(name[i] == typed[j]) i++; j++; } if(i < len1) return false; if(j < len2){ for(; j < len2; j++){ if(typed[j] != name[i-1]) return false; } } return true; } };官方题解更简洁:
class Solution { public: bool isLongPressedName(string name, string typed) { int i = 0, j = 0; while (j < typed.length()) { if (i < name.length() && name[i] == typed[j]) { i++; j++; } else if (j > 0 && typed[j] == typed[j - 1]) { j++; } else { return false; } } return i == name.length(); } }; 作者:LeetCode-Solution 链接:https://leetcode-cn.com/problems/long-pressed-name/solution/chang-an-jian-ru-by-leetcode-solution/ 来源:力扣(LeetCode) 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。