245. Shortest Word Distance III

2017-01-10  本文已影响0人  AlanGuo

This is a follow up of Shortest Word Distance. The only difference is now word1 could be the same as word2.
Given a list of words and two words word1 and word2, return the shortest distance between these two words in the list.
word1 and word2 may be the same and they represent two individual words in the list.
For example,Assume that words = ["practice", "makes", "perfect", "coding", "makes"]
.
Given word1 = “makes”, word2 = “coding”, return 1.
Given word1 = "makes", word2 = "makes", return 3.

Note:You may assume word1 and word2 are both in the list.

Solution:

跟243的思路差不多,注意排除掉Math.abs(index1 - index2) 为 0 的情况就好。

code:

public class Solution {
    public int shortestWordDistance(String[] words, String word1, String word2) 
    {
        int index1 = -1, index2 = -1;
        int minDistance = Integer.MAX_VALUE;
        for(int i = 0; i < words.length; i ++)
        {
            if(words[i].equals(word1))
            {
                index1 = i;
                if(index2 >= 0 && Math.abs(index1 - index2) < minDistance && Math.abs(index1 - index2) != 0)
                    minDistance = Math.abs(index1 - index2);
            }
            
            if(words[i].equals(word2))
            {
                index2 = i;
                if(index1 >= 0 && Math.abs(index1 - index2) < minDistance && Math.abs(index1 - index2) != 0)
                    minDistance = Math.abs(index1 - index2);
            }
            
        }
        return minDistance;
    }
}
上一篇 下一篇

猜你喜欢

热点阅读