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<String, List<Integer>> 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<Integer> list1 = wordToIndexes.get(word1);
        List<Integer> 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);
 */
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容