情感丰富的文字
Posted Roam-G
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了情感丰富的文字相关的知识,希望对你有一定的参考价值。
难度中等104
有时候人们会用重复写一些字母来表示额外的感受,比如 "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
题目看着简单,但是做起来还是很费劲的
/*
s = "heeellooo"
words = ["hello", "hi", "helo"]
*/
public static int expressiveWords(String s, String[] words)
int count = 0;
// 1.首先字母种类相同,
Set<String> set = new HashSet<String>();
for (int i = 0; i < s.length(); i++)
set.add(String.valueOf(s.charAt(i)));
List<String> list_not_in = new ArrayList<String>();
for (String word : words)
for (int i = 0; i < word.length(); i++)
if (set.add(String.valueOf(word.charAt(i))))
// 不存在时,返回true。 如果不存在就是结束循环♻️
list_not_in.add(word);
break;
// 求两个list1-list2,
// 分别计算各个字符的个数,。。。。还是python快啊
// 2。字母种类个数关系,必须是 1倍或者3倍
return count;
自己写了一会感觉思路清晰,但是代码越写越复杂,我能想到的方法用python做很简单,比如两个list取交集、并集、list1-list2,但是用java就麻烦了。再比如统计字符i做字符串string中出现的数量,python可以很简单统计到,java却很费劲。
还是看看官方给的解决方案吧
// by official
public static int expressiveWords2(String s, String[] words)
int ans = 0;
for (String word : words)
if (expand(s, word))
++ans;
return ans;
// "heeellooo" , hello, (s,word)
private static boolean expand(String s, String t)
int i = 0, j = 0;
while (i < s.length() && j < t.length())
if (s.charAt(i) != t.charAt(j))
return false;
char ch = s.charAt(i);
int cnti = 0;
while (i < s.length() && s.charAt(i) == ch)
++cnti;
++i;
int cntj = 0;
while (j < t.length() && t.charAt(j) == ch)
++cntj;
++j;
if (cnti < cntj)
return false;
if (cnti != cntj && cnti < 3)
return false;
return i==s.length() && j==t.length();
官方写的很通俗易懂,我比着手敲了一遍。
以上是关于情感丰富的文字的主要内容,如果未能解决你的问题,请参考以下文章