欢迎光临散文网 会员登陆 & 注册

LeetCode 648. Replace Words

2023-05-20 11:26 作者:您是打尖儿还是住店呢  | 我要投稿

In English, we have a concept called root, which can be followed by some other word to form another longer word - let's call this word successor. For example, when the root "an" is followed by the successor word "other", we can form a new word "another".

Given a dictionary consisting of many roots and a sentence consisting of words separated by spaces, replace all the successors in the sentence with the root forming it. If a successor can be replaced by more than one root, replace it with the root that has the shortest length.

Return the sentence after the replacement.

 

Example 1:

Input: dictionary = ["cat","bat","rat"], sentence = "the cattle was rattled by the battery"Output: "the cat was rat by the bat"

Example 2:

Input: dictionary = ["a","b","c"], sentence = "aadsfasf absbs bbab cadsfafs"Output: "a a b c"

 

Constraints:

  • 1 <= dictionary.length <= 1000

  • 1 <= dictionary[i].length <= 100

  • dictionary[i] consists of only lower-case letters.

  • 1 <= sentence.length <= 106

  • sentence consists of only lower-case letters and spaces.

  • The number of words in sentence is in the range [1, 1000]

  • The length of each word in sentence is in the range [1, 1000]

  • Every two consecutive words in sentence will be separated by exactly one space.

  • sentence does not have leading or trailing spaces.

这道题大部分人用的是字典树,我没有用过这种数据结构,以后可以学习一下,我用的是string.stratwith的函数,也是可以确认的;

正则表达式将字符串按照空格就行分列,这里面要转义字符也就是\\s才行。

下面是代码:

Runtime: 198 ms, faster than 38.91% of Java online submissions for Replace Words.

Memory Usage: 55.1 MB, less than 56.08% of Java online submissions for Replace Words.


LeetCode 648. Replace Words的评论 (共 条)

分享到微博请遵守国家法律