-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreplaceWords.py
More file actions
116 lines (94 loc) · 3.43 KB
/
Copy pathreplaceWords.py
File metadata and controls
116 lines (94 loc) · 3.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# -*- encoding: utf-8 -*-
'''
@project : LeetCode
@File : replaceWords.py
@Contact : 9824373@qq.com
@Desc :
在英语中,我们有一个叫做 词根(root)的概念,它可以跟着其他一些词组成另一个较长的单词——我们称这个词为 继承词(successor)。例如,词根an,跟随着单词 other(其他),可以形成新的单词 another(另一个)。
现在,给定一个由许多词根组成的词典和一个句子。你需要将句子中的所有继承词用词根替换掉。如果继承词有许多可以形成它的词根,则用最短的词根替换它。
你需要输出替换之后的句子。
示例 1:
输入: dict(词典) = ["cat", "bat", "rat"]
sentence(句子) = "the cattle was rattled by the battery"
输出: "the cat was rat by the bat"
注:
输入只包含小写字母。
1 <= 字典单词数 <=1000
1 <= 句中词语数 <= 1000
1 <= 词根长度 <= 100
1 <= 句中词语长度 <= 1000
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/replace-words
@Modify Time @Author @Version @Desciption
------------ ------- -------- -----------
2020-03-13 zhan 1.0 None
'''
from collections import defaultdict
from typing import List
class TriNode:
def __init__(self):
self.is_word = False
self.children = defaultdict(TriNode)
class Trie:
def __init__(self):
self.root = TriNode()
def insert(self,word):
'''
往字典树中插入单词word
:param word: str 类型
:return:
'''
curNode = self.root
for char in word:
curNode = curNode.children[char]
curNode.is_word = True
def search(self,word):
'''
搜索word是否在trie字典树种
:param word: str类型
:return:
'''
curNode = self.root
for char in word:
curNode = curNode.children[char]
if curNode is None: return False
return curNode.is_word
def startswith(self, prefix):
'''
Returns if there is any word in the trie that starts with the given prefix.
:param prefix:str类型
:return:
'''
curNode = self.root
for char in prefix:
curNode = curNode.children[char]
if curNode is None: return False
return True
def get_prefix(self,word):
'''
查找word 在trie中出现的最短前缀
:param word:
:return:
'''
curNode = self.root
for i, letter in enumerate(word):
curNode = curNode.children[letter]
if curNode is not None and curNode.is_word == True:
return word[:i+1]
return ''
class Solution:
def replaceWords(self, dict: List[str], sentence: str) -> str:
trie = Trie()
for word in dict:
trie.insert(word)
ans = ''
for word in sentence.split():
rStr = trie.get_prefix(word)
if rStr: ans += rStr + ' '
else:ans += word + ' '
return ans[:-1]
if __name__ == '__main__':
dict = ["cat", "bat", "rat"]
sentence = "the cattle was rattled by the battery"
ans = Solution().replaceWords(dict, sentence)
print(ans)