126.Word-Ladder-II
126. Word Ladder II
题目地址
http://www.lintcode.com/problem/word-ladder-ii/description
https://leetcode.com/problems/word-ladder-ii/
题目描述
Given two words (beginWord and endWord), and a dictionary's word list, find all shortest transformation sequence(s) from beginWord to endWord, such that:
Only one letter can be changed at a time
Each transformed word must exist in the word list. Note that beginWord is not a transformed word.
Note:
Return an empty list if there is no such transformation sequence.
All words have the same length.
All words contain only lowercase alphabetic characters.
You may assume no duplicates in the word list.
You may assume beginWord and endWord are non-empty and are not the same.
Example 1:
Input:
beginWord = "hit",
endWord = "cog",
wordList = ["hot","dot","dog","lot","log","cog"]
Output:
[
["hit","hot","dot","dog","cog"],
["hit","hot","lot","log","cog"]
]
Example 2:
Input:
beginWord = "hit"
endWord = "cog"
wordList = ["hot","dot","dog","lot","log"]
Output: []
Explanation: The endWord "cog" is not in wordList, therefore no possible transformation.代码
Approach #1 BFS + DFS
BFS to get neighbors, (双set, 保证层级有序)
visited.contains(next) || start.contains(next)
DFS backtrack to get paths
BFS 中用两个set,而不用queue是因为防止start.contains(next)误算下层的元素
Approach #2 BFS + DFS (RLE - Rejected)
先用BFS生成邻接单词表map和每个单词距离表distance
再用DFS遍历每条路径path, 利用distance保证次序
Last updated
Was this helpful?