题目

Given two words (start and end), and a dictionary, find all shortest transformation sequence(s) from start to end, such that:

  1. Only one letter can be changed at a time
  2. Each intermediate word must exist in the dictionary

For example,

Given:
start = "hit"
end = "cog"
dict = ["hot","dot","dog","lot","log"]

Return

  [
["hit","hot","dot","dog","cog"],
["hit","hot","lot","log","cog"]
]

Note:

  • All words have the same length.
  • All words contain only lowercase alphabetic characters.

题解

答案是http://www.1point3acres.com/bbs/thread-51646-1-1.html 上面
iostreamin写的。

我就直接贴过来就好,这道题多读读代码看明白。

代码:

  1    public ArrayList<ArrayList<String>> findLadders(String start, String end, HashSet<String> dict) {  
  2           
  3         HashMap<String, HashSet<String>> neighbours = new HashMap<String, HashSet<String>>();  
  4           
  5         dict.add(start);  
  6         dict.add(end);  
  7           
  8         // init adjacent graph          
  9         for(String str : dict){  
 10             calcNeighbours(neighbours, str, dict);  
 11         }  
 12           
 13         ArrayList<ArrayList<String>> result = new ArrayList<ArrayList<String>>();  
 14           
 15         // BFS search queue  
 16         LinkedList<Node> queue = new LinkedList<Node>();  
 17         queue.add(new Node(null, start, 1)); //the root has not parent and its level == 1 
 18           
 19         // BFS level  
 20         int previousLevel = 0;  
 21           
 22         // mark which nodes have been visited, to break infinite loop  
 23         HashMap<String, Integer> visited = new HashMap<String, Integer>();   
 24         while(!queue.isEmpty()){  
 25             Node n = queue.pollFirst();              
 26             if(end.equals(n.str)){   
 27                 // fine one path, check its length, if longer than previous path it's valid  
 28                 // otherwise all possible short path have been found, should stop  
 29                 if(previousLevel == 0 || n.level == previousLevel){  
 30                     previousLevel = n.level;  
 31                     findPath(n, result);                      
 32                 }else {  
 33                     // all path with length *previousLevel* have been found  
 34                     break;  
 35                 }                  
 36             }else {  
 37                 HashSet<String> set = neighbours.get(n.str);                   
 38                   
 39                 if(set == null || set.isEmpty()) continue;  
 40                 // note: I'm not using simple for(String s: set) here. This is to avoid hashset's  
 41                 // current modification exception.  
 42                 ArrayList<String> toRemove = new ArrayList<String>();  
 43                 for (String s : set) {  
 44                       
 45                     // if s has been visited before at a smaller level, there is already a shorter   
 46                     // path from start to s thus we should ignore s so as to break infinite loop; if   
 47                     // on the same level, we still need to put it into queue.  
 48                     if(visited.containsKey(s)){  
 49                         Integer occurLevel = visited.get(s);  
 50                         if(n.level+1 > occurLevel){  
 51                             neighbours.get(s).remove(n.str);  
 52                             toRemove.add(s);  
 53                             continue;  
 54                         }  
 55                     }  
 56                     visited.put(s,  n.level+1);  
 57                     queue.add(new Node(n, s, n.level + 1));  
 58                     if(neighbours.containsKey(s))  
 59                         neighbours.get(s).remove(n.str);  
 60                 }  
 61                 for(String s: toRemove){  
 62                     set.remove(s);  
 63                 }  
 64             }  
 65         }  
 66   
 67         return result;  
 68     }  
 69       
 70     public void findPath(Node n, ArrayList<ArrayList<String>> result){  
 71         ArrayList<String> path = new ArrayList<String>();  
 72         Node p = n;  
 73         while(p != null){  
 74             path.add(0, p.str);  
 75             p = p.parent;   
 76         }  
 77         result.add(path);  
 78     }  
 79   
 80     /* 
 81      * complexity: O(26*str.length*dict.size)=O(L*N) 
 82      */  
 83     void calcNeighbours(HashMap<String, HashSet<String>> neighbours, String str, HashSet<String> dict) {  
 84         int length = str.length();  
 85         char [] chars = str.toCharArray();  
 86         for (int i = 0; i < length; i++) {  
 87               
 88             char old = chars[i];   
 89             for (char c = 'a'; c <= 'z'; c++) {  
 90   
 91                 if (c == old)  continue;  
 92                 chars[i] = c;  
 93                 String newstr = new String(chars);                  
 94                   
 95                 if (dict.contains(newstr)) {  
 96                     HashSet<String> set = neighbours.get(str);  
 97                     if (set != null) {  
 98                         set.add(newstr);  
 99                     } else {  
                         HashSet<String> newset = new HashSet<String>();  
                         newset.add(newstr);  
                         neighbours.put(str, newset);  
                     }  
                 }                  
             }  
             chars[i] = old;  
         }  
     }  
       
     private class Node {  
         public Node parent;  //previous node
         public String str;  
         public int level;  
         public Node(Node p, String s, int l){  
             parent = p;  
             str = s;  
             level = l;  
         }  
     } 
 Reference:http://www.1point3acres.com/bbs/thread-51646-1-1.html

Word Ladder II leetcode java的更多相关文章

  1. Word Break II leetcode java

    题目: Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where e ...

  2. Word Ladder II [leetcode]

    本题有几个注意点: 1. 回溯找路径时.依据路径的最大长度控制回溯深度 2. BFS时,在找到end单词后,给当前层做标记find=true,遍历完当前层后结束.不须要遍历下一层了. 3. 能够将字典 ...

  3. [leetcode]Word Ladder II @ Python

    [leetcode]Word Ladder II @ Python 原题地址:http://oj.leetcode.com/problems/word-ladder-ii/ 参考文献:http://b ...

  4. LeetCode: Word Ladder II 解题报告

    Word Ladder II Given two words (start and end), and a dictionary, find all shortest transformation s ...

  5. [Leetcode Week5]Word Ladder II

    Word Ladder II 题解 原创文章,拒绝转载 题目来源:https://leetcode.com/problems/word-ladder-ii/description/ Descripti ...

  6. 【leetcode】Word Ladder II

      Word Ladder II Given two words (start and end), and a dictionary, find all shortest transformation ...

  7. LeetCode :Word Ladder II My Solution

    Word Ladder II Total Accepted: 11755 Total Submissions: 102776My Submissions Given two words (start  ...

  8. leetcode 127. Word Ladder、126. Word Ladder II

    127. Word Ladder 这道题使用bfs来解决,每次将满足要求的变换单词加入队列中. wordSet用来记录当前词典中的单词,做一个单词变换生成一个新单词,都需要判断这个单词是否在词典中,不 ...

  9. 126. Word Ladder II(hard)

    126. Word Ladder II 题目 Given two words (beginWord and endWord), and a dictionary's word list, find a ...

随机推荐

  1. 斯坦纳树 [bzoj2595][wc2008]游览计划 题解

    话说挺早就写过斯坦纳树了,不过当时没怎么总结,也不是很理解……现在来个小结吧~ 斯坦纳树就是包含给定点的最小生成树(个人理解权值应当为正). 一般来讲,给定点的数目应该很小吧...于是我们可以用状压D ...

  2. code vs 1094 FBI树 2004年NOIP全国联赛普及组

    题目描述 Description 我们可以把由“0”和“1”组成的字符串分为三类:全“0”串称为B串,全“1”串称为I串,既含“0”又含“1”的串则称为F串. FBI树是一种二叉树[1],它的结点类型 ...

  3. 1295 N皇后问题

    题目描述 Description 在n×n格的棋盘上放置彼此不受攻击的n个皇后.按照国际象棋的规则,皇后可以攻击与之处在同一行或同一列或同一斜线上的棋子.n后问题等价于再n×n的棋盘上放置n个皇后,任 ...

  4. hdu 4169 二分匹配最大独立集 ***

    题意:有水平N张牌,竖直M张牌,同一方向的牌不会相交.水平的和垂直的可能会相交,求最少踢出去几张牌使剩下的牌都不相交. 二分匹配 最小点覆盖=最大匹配. 链接:点我 坐标点作为匹配的端点 #inclu ...

  5. BZOJ2888 : 资源运输

    显然资源集合处就是树的重心,这题需要动态维护树的重心. 每个连通块以重心为根,用link-cut tree维护每个点的子树大小以及子树内所有点到它的距离和. 合并两个连通块时,考虑启发式合并,暴力往大 ...

  6. Xcode6 iOS7模拟器和Xcode7 iOS8模拟器离线下载

    Xcode6 只支持iOS7和iOS8的模拟器 Xcode7 只支持iOS9和iOS8的模拟器 Xcode 并不会识别 SDKs 目录下的模拟器,我经过一些尝试以后,发现要放在这个目录下: /Libr ...

  7. C# 判断字符编码的六种方法

    方法一http://blog.csdn.net/qiujiahao/archive/2007/08/09/1733169.aspx在unicode 字符串中,中文的范围是在4E00..9FFF:CJK ...

  8. 使用Java进行串口SerialPort通讯

    1.准备工作        在进行串口连接通讯前,必须保证你当前操作电脑上有可用且闲置的串口.因为一般的电脑上只有一个或者两个串口,如COM1或COM2,但大多数情况下,这些串口可能会被其他的程序或者 ...

  9. oracle like 条件拼接

    (1) ibatis xml配置:下面的写法只是简单的转义 namelike '%$name$%' (2) 这时会导致sql注入问题,比如参数name传进一个单引号“'”,生成的sql语句会是:nam ...

  10. OOP设计模式[JAVA]——04命令模式

    命令模式 命令模式的意图 命令模式属于对象的行为模式.别名又叫:Action或Transaction. 命令模式把一个请求或者操作封装到一个对象中.命令模式允许系统使用不同的请求把客户端参数化,对请求 ...