244. Shortest Word Distance II

Description

This is a follow up of Shortest Word Distance. The only difference is now you are given the list of words and your method will be called repeatedly many times with different parameters. How would you optimize it?

Design a class which receives a list of words in the constructor, and implements a method that takes two words word1 and word2 and return the shortest distance between these two words in the list.

For example,
Assume that words = ["practice", "makes", "perfect", "coding", "makes"].

Given word1 = “coding”, word2 = “practice”, return 3.
Given word1 = "makes", word2 = "coding", return 1.

Note:
You may assume that word1 does not equal to word2, and word1 and word2 are both in the list.

Solution

HashMap + Two-pointer, shortest time O(K+L), space O(N)

class WordDistance {
    private Map> wordToIndexes;

    public WordDistance(String[] words) {
        wordToIndexes = new HashMap<>();
        for (int i = 0; i < words.length; ++i) {
            if (!wordToIndexes.containsKey(words[i])) {
                wordToIndexes.put(words[i], new ArrayList<>());
            }
            wordToIndexes.get(words[i]).add(i);
        }
    }
    
    public int shortest(String word1, String word2) {
        List list1 = wordToIndexes.get(word1);
        List list2 = wordToIndexes.get(word2);
        int i = 0;
        int j = 0;
        int shortestDis = Integer.MAX_VALUE;
        
        while (i < list1.size() && j < list2.size()) {
            shortestDis = Math.min(shortestDis
                                   , Math.abs(list1.get(i) - list2.get(j)));
            if (list1.get(i) < list2.get(j)) {
                ++i;
            } else {
                ++j;
            }
        }
        
        return shortestDis;
    }
}

/**
 * Your WordDistance object will be instantiated and called as such:
 * WordDistance obj = new WordDistance(words);
 * int param_1 = obj.shortest(word1,word2);
 */

你可能感兴趣的:(244. Shortest Word Distance II)