Leetcode: 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.

还是采取Shortest Word Distance I 的方法

只不过判断 minDis的时候加入判断,如果 i==j,minDis = minDis

 1 public class Solution {
 2     public int shortestWordDistance(String[] words, String word1, String word2) {
 3         int minDis = Integer.MAX_VALUE;
 4         int i=-1, j=-1;
 5         for (int k=0; k<words.length; k++) {
 6             if (words[k].equals(word1)) {
 7                 i = k;
 8                 if (i!=-1 && j!=-1) 
 9                     minDis = Math.min(minDis, Math.abs(i-j));
10             }
11             if (words[k].equals(word2)) {
12                 j = k;
13                 if (i!=-1 && j!=-1) 
14                     minDis = (i==j)? minDis : Math.min(minDis, Math.abs(i-j));
15             }
16         }
17         return minDis;
18     }
19 }
原文地址:https://www.cnblogs.com/EdwardLiu/p/5062381.html