中级农民
- 积分
- 100
- 大米
- 颗
- 鳄梨
- 个
- 水井
- 尺
- 蓝莓
- 颗
- 萝卜
- 根
- 小米
- 粒
- 学分
- 个
- 注册时间
- 2017-7-27
- 最后登录
- 1970-1-1
|
超高频必考
Shortest Word Distance II Medium Real 1/21 LC 244 Hash Table
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.
思路就是用一个hashmap存word对应的position list, 然后在查找function里面two pointer求shortest.
https://leetcode.com/problems/shortest-word-distance-ii/description/
- class WordDistance {
- Map<String, List<Integer>> map;
-
- public WordDistance(String[] words) {
- map = new HashMap<>();
- for (int i = 0; i < words.length; i++) {
- if(!map.containsKey(words[i])) {
- map.put(words[i], new ArrayList<Integer>());
- }
- map.get(words[i]).add(i);
- }
- }
-
- public int shortest(String word1, String word2) {
- List<Integer> list1 = map.get(word1);
- List<Integer> list2 = map.get(word2);
- int shortest = Integer.MAX_VALUE;
- int index1 = -1;
- int index2 = -1;
- for(int i = 0, j = 0; i < list1.size() && j < list2.size();) {
- index1 = list1.get(i);
- index2 = list2.get(j);
- if(index1 > index2) {
- shortest = Math.min(shortest, index1 - index2);
- j++;
- } else {
- shortest = Math.min(shortest, index2 - index1);
- i++;
- }
- }
- return shortest;
- }
- }
- /**
- * Your WordDistance object will be instantiated and called as such:
- * WordDistance obj = new WordDistance(words);
- * int param_1 = obj.shortest(word1,word2);
- */
复制代码 |
|