245. Shortest Word Distance III

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;
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容