题目描述
Given a list of words and two words word1 and word2, return the shortest distance between these two words in the list.
Example
|
|
Note
You may assume that word1 does not equal to word2, and word1 and word2 are both in the list.
分析
这道题,首先是遍历一遍数组,我们把出现word1和word2的给定单词所有出现的位置分别存入两个数组里,然后我们对这两个数组进行两两比较更新结果,代码如下:
解法1
C++
|
|
Swift
|
|
解法2
上面的那种方法并不高效,我们其实需要遍历一次数组就可以了,我们用两个变量p1
, p2
初始化为-1
,然后我们遍历数组,遇到单词1,就将其位置存在p1
里,若遇到单词2,就将其位置存在p2
里,如果此时p1, p2
都不为-1
了,那么我们更新结果,参见代码如下:
C++
|
|
Swift
|
|
解法3
下面这种方法只用一个辅助变量idx
,初始化为-1
,然后遍历数组,如果遇到等于两个单词中的任意一个的单词,我们在看idx
是否为-1
,若不为-1
,且指向的单词和当前遍历到的单词不同,我们更新结果,参见代码如下:
C++
|
|
Swift
|
|
参考资料:
https://leetcode.com/discuss/50234/ac-java-clean-solution
https://leetcode.com/discuss/61820/java-only-need-to-keep-one-index