-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathword_ladder.cpp
44 lines (33 loc) · 1.24 KB
/
word_ladder.cpp
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
class Solution {
public:
int ladderLength(string beginWord, string endWord, vector<string>& wordList) {
if(beginWord.size() == 0 or endWord.size() == 0 or wordList.size() == 0) return 0;
set<string> dict;
for(auto word : wordList) dict.insert(word);
queue<string> q;
int ladder = 1;
q.push(beginWord);
while(!q.empty()){
int n = q.size();
for(int i=0; i<n; i++){
auto current = q.front();
q.pop();
if(current == endWord)
return ladder;
for(int j=0; j<current.size(); j++){
auto c = current[j];
for(int k=0; k<26; k++){
current[j] = 'a' + k;
if(dict.find(current) != dict.end()){
dict.erase(current);
q.push(current);
}
}
current[j] = c;
}
}
ladder++;
}
return 0;
}
};