leetcode245 Shortest Word Distance III-zh
# 245. 最短单词距离 III (opens new window)
English Version (opens new window)
# 题目描述
给定一个单词列表和两个单词 word1 和 word2,返回列表中这两个单词之间的最短距离。
word1 和 word2 是有可能相同的,并且它们将分别表示为列表中两个独立的单词。
示例:
假设 words = ["practice", "makes", "perfect", "coding", "makes"]
.
输入: word1 =“makes”
, word2 =“coding”
输出: 1
输入: word1 ="makes"
, word2 ="makes"
输出: 3
注意:
你可以假设 word1 和 word2 都在列表里。
# 解法
# Python3
class Solution:
def shortestWordDistance(self, wordsDict: List[str], word1: str, word2: str) -> int:
i1 = i2 = -1
shortest_distance = len(wordsDict)
same = word1 == word2
for i in range(len(wordsDict)):
if same:
if word1 == wordsDict[i]:
if i1 != -1:
shortest_distance = min(shortest_distance, i - i1)
i1 = i
else:
if word1 == wordsDict[i]:
i1 = i
if word2 == wordsDict[i]:
i2 = i
if i1 != -1 and i2 != -1:
shortest_distance = min(shortest_distance, abs(i1 - i2))
return shortest_distance
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Java
class Solution {
public int shortestWordDistance(String[] wordsDict, String word1, String word2) {
int i1 = -1, i2 = -1;
int shortestDistance = wordsDict.length;
boolean same = word1.equals(word2);
for (int i = 0; i < wordsDict.length; ++i) {
if (same) {
if (word1.equals(wordsDict[i])) {
if (i1 != -1) {
shortestDistance = Math.min(shortestDistance, i - i1);
}
i1 = i;
}
} else {
if (word1.equals(wordsDict[i])) {
i1 = i;
}
if (word2.equals(wordsDict[i])) {
i2 = i;
}
if (i1 != -1 && i2 != -1) {
shortestDistance = Math.min(shortestDistance, Math.abs(i1 - i2));
}
}
}
return shortestDistance;
}
}
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
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
# ...
1
编辑 (opens new window)
上次更新: 2021/10/30, 12:58:38