本文涉及的基础知识点
C++算法:滑动窗口及双指针总结
LeetCode809. 情感丰富的文字
有时候人们会用重复写一些字母来表示额外的感受,比如 “hello” -> “heeellooo”, “hi” -> “hiii”。我们将相邻字母都相同的一串字符定义为相同字母组,例如:“h”, “eee”, “ll”, “ooo”。
对于一个给定的字符串 S ,如果另一个单词能够通过将一些字母组扩张从而使其和 S 相同,我们将这个单词定义为可扩张的(stretchy)。扩张操作定义如下:选择一个字母组(包含字母 c ),然后往其中添加相同的字母 c 使其长度达到 3 或以上。
例如,以 “hello” 为例,我们可以对字母组 “o” 扩张得到 “hellooo”,但是无法以同样的方法得到 “helloo” 因为字母组 “oo” 长度小于 3。此外,我们可以进行另一种扩张 “ll” -> “lllll” 以获得 “helllllooo”。如果 s = “helllllooo”,那么查询词 “hello” 是可扩张的,因为可以对它执行这两种扩张操作使得 query = “hello” -> “hellooo” -> “helllllooo” = s。
输入一组查询单词,输出其中可扩张的单词数量。
示例:
输入:
s = “heeellooo”
words = [“hello”, “hi”, “helo”]
输出:1
解释:
我们能通过扩张 “hello” 的 “e” 和 “o” 来得到 “heeellooo”。
我们不能通过扩张 “helo” 来得到 “heeellooo” 因为 “ll” 的长度小于 3 。
提示:
1 <= s.length, words.length <= 100
1 <= words[i].length <= 100
s 和所有在 words 中的单词都只由小写字母组成。
滑动窗口
Is(t,s) t是否能扩展成s。
i指向t,j指向s。
i和i同时结束返回true,一个结束另一个未结束返回false,都没结束继续。
t[i]!=s[j] 返回false。
tc 等于连续t[i]的数量,sc连续s[i]的数量。
以下两种情况之一符合:
a,tc = sc
b,tc < sc 缺sc >=3。
不符合返回false。
代码
核心代码
class Solution {
public:
int expressiveWords(string s, vector<string>& words) {
int ans = 0;
for (const auto& t : words) {
ans += Is(t, s);
}
return ans;
}
bool Is(const string& t, const string& s) {
int i = 0, j = 0;
for (; (i < t.length()) && (j < s.length()); ) {
if (t[i] != s[j]) { return false; }
int tc = 0, sc = 0;
for (; (i + tc < t.length()) && (t[i + tc] == t[i]); tc++);
for (; (j + sc < s.length()) && (s[j + sc] == s[j]); sc++);
if (sc < tc) { return false; }
if((tc < sc ) && (sc < 3 )) { return false; }
i += tc;
j += sc;
}
return (i >= t.length()) && (j >= s.length());
}
};
单元测试
string s;
vector<string> words;
TEST_METHOD(TestMethod11)
{
s = "heeellooo", words = { "hello", "hi", "helo" };
auto res = Solution().expressiveWords(s, words);
AssertEx(1, res);
}
TEST_METHOD(TestMethod12)
{
s = "dddiiiinnssssssoooo", words = { "dinnssoo","ddinso","ddiinnso","ddiinnssoo","ddiinso","dinsoo","ddiinsso","dinssoo","dinso" };
auto res = Solution().expressiveWords(s, words);
AssertEx(3, res);
}
TEST_METHOD(TestMethod13)
{
s = "zzzzzyyyyy", words = {"zzyy", "zy", "zyy" };
auto res = Solution().expressiveWords(s, words);
AssertEx(3, res);
}