forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.java
46 lines (43 loc) · 1.21 KB
/
Solution.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
class Solution {
private List<String> ans = new ArrayList<>();
private List<String> wordList;
private String endWord;
private boolean[] vis;
public List<String> findLadders(String beginWord, String endWord, List<String> wordList) {
this.wordList = wordList;
this.endWord = endWord;
ans.add(beginWord);
vis = new boolean[wordList.size()];
return dfs(beginWord) ? ans : List.of();
}
private boolean dfs(String s) {
if (s.equals(endWord)) {
return true;
}
for (int i = 0; i < wordList.size(); ++i) {
String t = wordList.get(i);
if (vis[i] || !check(s, t)) {
continue;
}
vis[i] = true;
ans.add(t);
if (dfs(t)) {
return true;
}
ans.remove(ans.size() - 1);
}
return false;
}
private boolean check(String s, String t) {
if (s.length() != t.length()) {
return false;
}
int cnt = 0;
for (int i = 0; i < s.length(); ++i) {
if (s.charAt(i) != t.charAt(i)) {
++cnt;
}
}
return cnt == 1;
}
}