Given two words (start and end), and a dictionary, find all shortest transformation sequence(s) from start to end, such that:
- Only one letter can be changed at a time
- 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.
» Solve this problem
写的有点烦。
题目本身倒是不难,主要是记录路径,然后还原。
class Node {
int no;
String val;
LinkedList<Node> prev;
Node(int no, String v) {
this.no = no;
this.val = v;
}
void addPrev(Node pNode) {
if (prev == null) {
prev = new LinkedList<Node>();
}
prev.add(pNode);
}
}
public class Solution {
ArrayList<ArrayList<String>> answer;
public void findPath(Node node, ArrayList<String> cur, String start) {
if (node.val.equals(start)) {
answer.add(cur);
return;
}
ArrayList<String> temp;
for (Node n : node.prev) {
temp = new ArrayList<String>(cur);
temp.add(0, n.val);
findPath(n, temp, start);
}
}
public ArrayList<ArrayList<String>> findLadders(String start, String end, HashSet<String> dict) {
// Start typing your Java solution below
// DO NOT write main() function
HashMap<String, Node> map = new HashMap<String, Node>();
Queue<Node> queue = new LinkedList<Node>();
Node node = new Node(0, start);
Node endNode = null;
map.put(start, node);
queue.add(node);
boolean stop = false;
while (queue.size() > 0 && !stop) {
int count = queue.size();
for (int i = 0; i < count; i++) {
node = queue.poll();
for (int j = 0; j < node.val.length(); j++) {
StringBuilder t = new StringBuilder(node.val);
for (char k = 'a'; k <= 'z'; k++) {
t.setCharAt(j, k);
if (dict.contains(t.toString())) {
Node v = map.get(t.toString());
if (v == null) {
Node temp = new Node(node.no + 1, t.toString());
temp.addPrev(node);
queue.add(temp);
map.put(t.toString(), temp);
if (t.toString().equals(end)) {
endNode = temp;
stop = true;
}
}
else {
if (v.no == node.no + 1) {
v.addPrev(node);
}
}
}
}
}
}
}
answer = new ArrayList<ArrayList<String>>();
if (endNode != null) {
findPath(endNode, new ArrayList<String>(Arrays.asList(end)), start);
}
return answer;
}
}
本文探讨了从给定的起始单词到目标单词的最短路径问题,涉及仅通过一次字母更改即可到达下一个单词,并确保所有中间单词存在于字典中。通过构建节点和使用广度优先搜索算法,我们能够找到有效的转换序列。
4139

被折叠的 条评论
为什么被折叠?



