import java.util.HashSet;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Set;
/**
* TestCases
"a", "c", ["a", "b", "c"]
"hit", "cog", ["hot","cog","dot","dog","hit","lot","log"]
"hit", "cog", ["hot","hit","cog","dot","dog"]
"red", "tax", ["ted","tex","red","tax","tad","den","rex","pee"]
*/
public class WordLadder {
/**
* 要注意添加节点时要给单词从dict中删掉
*/
// 常规的BFS,耗时64ms
public int ladderLength(String beginWord, String endWord, Set wordList) {
HashSet words = new HashSet<>(wordList);
Queue queue = new LinkedList<>();
queue.offer(beginWord);
Queue next = new LinkedList<>();
int length = 1;
while (!queue.isEmpty()) {
String s = queue.poll();
if (s.equals(endWord)) {
return length;
}
if (!words.isEmpty()) {
StringBuilder sb = new StringBuilder(s);
for (int i = 0; i < s.length(); i++) {
for (char c = 'a'; c <= 'z'; c++) {
if (c == s.charAt(i)) {
continue;
}
sb.setCharAt(i, c);
String st = sb.toString();
if (words.contains(st)) {
next.offer(st);
words.remove(st);
}
}
sb.setCharAt(i, s.charAt(i));
}
}
if (queue.isEmpty()) {
queue.addAll(next);
next.clear();
length++;
}
}
return 0;
}
// 采用双端BFS,耗时28ms
// 假设每层分叉因子为k,一共n层,则BFS时间复杂度为O(k^n),双端BFS时间复杂度为O(2 * k^(n / 2)),显然要快得多
public int ladderLength2(String beginWord, String endWord, Set wordList) {
Set beginSet = new HashSet<>();
beginSet.add(beginWord);
Set endSet = new HashSet();
endSet.add(endWord);
int length = 1;
while (!beginSet.isEmpty() && !endSet.isEmpty()) {
if (beginSet.size() > endSet.size()) {
Set temp = beginSet;
beginSet = endSet;
endSet = temp;
}
Set nextSet = new HashSet();
for (String word : beginSet) {
char[] wordArr = word.toCharArray();
for (int i = 0; i < wordArr.length; i++) {
char c = wordArr[i];
for (int j = 0; j < 26; j++) {
if ('a' + j == c) {
continue;
}
wordArr[i] = (char) ('a' + j);
String s = String.valueOf(wordArr);
if (endSet.contains(s)) {
return length + 1;
}
if (wordList.contains(s)) {
nextSet.add(s);
wordList.remove(s);
}
}
wordArr[i] = c;
}
}
beginSet = nextSet;
length++;
}
return 0;
}
}