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.
题目解析:
让找出所有最短的路径。一开始尝试了跟上一题同样的方法,只是设置队列的话,不能有效的找出一条有效的路径;后来考虑递归算法,但是在找到最短路径之前已经递归了深层次的数据,可能已经把长路径保存到输出结果当中。只是递归的话,没有有效的方法去判断什么时候才是最短的路径。比较笨的方法是,先层序遍历找到最短路径值,方法跟上题一样,然后再深度优先算法,将路径长度填入其中。得出最后结果。或者也可以直接深度优先得到最后的结果,然后在res容器中判断最短的路径长度,然后输出最短的路径长度。相当于又遍历两遍。
没有实现代码,但是方案是可行的,只是时间复杂度很高。
下面转一篇讲解很到位的文章,以待研究。
http://www.cnblogs.com/shawnhue/archive/2013/06/05/leetcode_126.html
初始思路
最直接的想法是从start开始,对每个字母位置从’a’到’z’尝试替换。如果替换字母后的单词在字典中,将其加入路径,然后以新单词为起点进行递归调用,否则继续循环。每层递归函数终止的条件是end出现或者单词长度*26次循环完毕。end出现时表示找到一个序列,对比当前最短序列做相应更新即可。
处理过程中需要注意的主要有几点:
- 不能相同字母替换,如hot第一个位置遍历到h时不应该处理。否则就会不断的在hot上死循环。因此在替换后前要做一次检查。
- 我们要找的是最短的转换方案,所以转换序列不应该出现重复的单词。否则组合将会有无数多种,如例子中的[“hit”,”hot”,”dot”,”dog”,”dot”,”dog”,”dog”,…..”cog”]。这里我们可以使用一个unordered_set容器来保存某次一次替换序列中已出现过的单词,也可以每次使用std:find去搜索当前替换序列。如果使用unordered_set,在递归处理时,和单词序列一样,要在递归后做相应的出栈操作。
- 处理过程中如果发现当前处理序列长度已经超过当前最短序列长度,可以中止对该序列的处理,因为我们要找的是最短的序列。
class Solution {
public:
std::vector<std::vector<std::string>> findLadders(std::string start, std::string end, std::unordered_set<std::string> &dict)
{
std::vector<std::vector<std::string>> result;
std::vector<std::string> entry;
entry.push_back(start);
Find(start, end, dict, 0, result, entry);
return result;
}
private:
void Find(std::string& start, const std::string& end, const std::unordered_set<std::string> &dict
, size_t positionToChange, std::vector<std::vector<std::string>>& result, std::vector<std::string>& entry)
{
//如果长度已经等于当前结果中的长度,再找出来肯定就
//超过了,终止处理
if(!result.empty() && entry.size() == result[0].size())
{
return;
}
for(size_t pos = positionToChange; pos < start.size(); ++pos)
{
char beforeChange = ' ';
for(int i = 'a'; i <= 'z'; ++i)
{
//防止同字母替换
if(start[pos] == i)
{
continue;
}
beforeChange = start[pos];
start[pos] = i;
//用std::find的话
/*
if(std::find(entry.begin(), entry.end(), start) != entry.end())
{
start[pos] = beforeChange;
continue;
}
*/
//如果单词已经用过的情况
if(!used_.empty() && used_.count(start)!=0 )
{
start[pos] = beforeChange;
continue;
}
if(start == end)
{
entry.push_back(start);
//只需要保存最短的序列
if(!result.empty())
{
if(entry.size() < result[0].size())
{
result.clear();
result.push_back(entry);
}
else if(entry.size() == result[0].size())
{
result.push_back(entry);
}
}
else
{
result.push_back(entry);
}
//完成一个序列,把前面加入的end弹出
entry.pop_back();
return;
}
if(dict.find(start) != dict.end())
{
entry.push_back(start);
used_.insert(start);
Find(start, end, dict, 0, result, entry);
used_.erase(*entry.rbegin());
entry.pop_back();
if(!entry.empty())
{
start = *entry.rbegin();
}
else
{
start[pos] = beforeChange;
}
}
else
{
start[pos] = beforeChange;
}
}
}
return;
}
std::unordered_set<std::string> used_;
};
递归实现
提交测试,Judge Small没有问题。Judge Large不幸超时。
优化
观察我们的处理方法,找到可变换后的单词后,我们会马上基于它继续查找。这是一种深度优先的查找方法,即英文的DFS(Depth-first search)。这对找出答案很可能是不利的,如果一开始进入了一条很长的序列,就会浪费了时间。而广度优先BFS(Breadth-first search)的方法似乎更合适,当找到一个序列时,这个序列肯定是最短的之一。
要进行广度优先遍历,我们可以在发现替换字母后的单词在字典中时,不马上继续处理它,而是将其放入一个队列中。通过队列先进先出的性质,就可以实现广度优先的处理了。由于最后要输出的是整个转换序列,为了简单起见,我们可以将当前已转换出的序列放入队列中,即队列形式为std::vector<std::vector<std::string>>,序列的最后一个元素就是下次处理时要继续转换的单词。
使用广度优先遍历后,还有一个特性使得我们可以更方便的处理深度优先中重复单词的问题。当一个单词在某一层(一层即从第一个单词到当前单词的长度一样的序列)出现后,后面再出现的情况肯定不会是最短序列(相当于走了回头路),因此我们可以在处理完一层后直接将已用过的单词从字典中去除。需要注意的是,同一层是不能去除的,如例子中的hot在两个序列的第二层中都出现了。这样我们就需要一个容器把当前层用过的单词保存起来,等处理的层数发生变化时再将它们从字典里移除。
最后要注意的是查找结束的条件。由于找到了一个序列后该序列只是最短的之一,我们还要继续进行处理,直到队列中当前层都处理完毕。所以我们要在找到一个序列后将它的长度记录下来,当要处理的序列长度已经大于该值时,就可以结束查找了。
class Solution {
public:
std::vector<std::vector<std::string> > findLadders(std::string start, std::string end, std::unordered_set<std::string> &dict)
{
std::queue<std::vector<std::string>> candidate;
std::vector<std::vector<std::string>> result;
std::unordered_set<std::string> usedWord;
std::string currentString;
bool foundShortest = false;
size_t shortest = 0;
size_t previousPathLen = 0;
candidate.push({start});
while(!candidate.empty())
{
currentString = *candidate.front().rbegin();
if(candidate.front().size() != previousPathLen)
{
for(auto iter = usedWord.begin(); iter != usedWord.end(); ++iter)
{
dict.erase(*iter);
}
}
if(foundShortest && candidate.front().size() >= shortest)
{
break;
}
for(size_t pos = 0; pos < start.size(); ++pos)
{
char beforeChange = ' ';
for(int i = 'a'; i <= 'z'; ++i)
{
beforeChange = currentString[pos];
if(beforeChange == i)
{
continue;
}
currentString[pos] = i;
if(dict.count(currentString) > 0)
{
usedWord.insert(currentString);
if(currentString == end)
{
result.push_back(candidate.front());
result.rbegin()->push_back(end);
foundShortest = true;
shortest = result.rbegin()->size();
}
else
{
std::vector<std::string> newPath(candidate.front());
newPath.push_back(currentString);
candidate.push(newPath);
}
}
currentString[pos] = beforeChange;
}
}
if(!candidate.empty())
{
previousPathLen = candidate.front().size();
candidate.pop();
}
}
return result;
}
};
BFS实现1
提交后Judge Large多处理了几条用例,但是最后还是超时了。
再次优化
一个比较明显的优化点是我们把存储序列的vector放到了队列中,每次都要拷贝旧队列然后产生新队列。回想一下我们使用vector的原因,主要是为了能保存序列,同时还能获得当前序列的长度。为了实现这两个目的,我们可以定义如下结构体:
struct PathTag
{
PathTag* parent_;
std::string value_;
int length_;
PathTag(PathTag* parent, const std::string& value, int length) : parent_(parent), value_(value), length_(length)
{
}
};
结构体记录了当前单词的前一个单词以及当前的序列长度。有了这个结构体,我们在最后找到end后就可以通过不断往前回溯得出整个路径。而这个路径是反向的,最后还需要做一次倒置操作。改进前面的BFS代码如下(需要注意的是,由于LeetCode里不能使用智能指针,我们通过辅助函数来申请和释放裸指针而不是直接new。如果不关心内存问题的话直接new了不管也可。):
class Solution{
public:
~Solution()
{
for(auto iter = pool_.begin(); iter != pool_.end(); ++iter)
{
delete *iter;
}
}
std::vector<std::vector<std::string> > findLadders(std::string start, std::string end, std::unordered_set<std::string> &dict)
{
std::queue<PathTag*> candidate;
std::vector<std::vector<std::string>> result;
std::unordered_set<std::string> usedWord;
std::string currentString;
bool foundShortest = false;
size_t shortest = 0;
size_t previousPathLen = 0;
candidate.push(AllocatePathTag(nullptr, start, 1));
while(!candidate.empty())
{
PathTag* current = candidate.front();
currentString = current->value_;
if(current->length_ != previousPathLen)
{
for(auto iter = usedWord.begin(); iter != usedWord.end(); ++iter)
{
dict.erase(*iter);
}
}
if(foundShortest && current->length_ >= shortest)
{
break;
}
for(size_t pos = 0; pos < start.size(); ++pos)
{
char beforeChange = ' ';
for(int i = 'a'; i <= 'z'; ++i)
{
beforeChange = currentString[pos];
if(beforeChange == i)
{
continue;
}
currentString[pos] = i;
if(dict.count(currentString) > 0)
{
usedWord.insert(currentString);
if(currentString == end)
{
GeneratePath(result, current, currentString);
foundShortest = true;
shortest = result.rbegin()->size();
continue;
}
else
{
candidate.push(AllocatePathTag(current, currentString, current->length_ + 1));
}
}
currentString[pos] = beforeChange;
}
}
if(!candidate.empty())
{
previousPathLen = current->length_;
candidate.pop();
}
}
return result;
}
private:
struct PathTag
{
PathTag* parent_;
std::string value_;
int length_;
PathTag(PathTag* parent, const std::string& value, int length) : parent_(parent), value_(value), length_(length)
{
}
};
PathTag* AllocatePathTag(PathTag* parent, const std::string& value, int length)
{
if(nextPoolPos_ >= pool_.size())
{
for(int i = 0; i < 100; ++i)
{
PathTag* newTag = new PathTag(nullptr, " ", 0);
pool_.push_back(newTag);
}
}
PathTag* toReturn = pool_[nextPoolPos_];
toReturn->parent_ = parent;
toReturn->value_ = value;
toReturn->length_ = length;
++nextPoolPos_;
return toReturn;
}
int nextPoolPos_;
std::vector<PathTag*> pool_;
void GeneratePath(std::vector<std::vector<std::string>>& result, PathTag* pathTag, const std::string& end)
{
std::vector<std::string> path;
path.push_back(end);
while(pathTag != nullptr)
{
path.push_back(pathTag->value_);
pathTag = pathTag->parent_;
}
size_t left = 0;
size_t right = path.size() - 1;
while(left < right)
{
std::swap(path[left], path[right]);
++left;
--right;
}
result.push_back(path);
}
};
BFS2
提交后Judge Large又多处理了几条用例,但是还是没能通过。
使用邻接列表
在继续优化之前,我们先来学习一个图论中的概念 – 邻接列表(Adjacency List)。具体细节可以参见这篇wiki:http://en.wikipedia.org/wiki/Adjacency_list。简单来说,这是一个存储图中每个顶点的所有邻接顶点的数据结构。如无向图:
a
/ \
b — c
它的邻接列表为:
a => b, c
b => a, c
c => a, b
具体到本问题,我们可以发现,start到end的所有序列,就是一个这些序列中所有单词为点组成的图。如果我们生成了该图的邻接列表,就可以不断的在每个单词的邻接列表里找到转换的下一个单词,从而最终找到end。那么,我们首先要对字典里的单词生成邻接列表:遍历字典里的单词,针对每个单词用前面逐字母替换的方法找出邻接单词,并保存起来。这里使用一个std::unordered_map<std::string, std::unordered_set<std::string>>来保存邻接列表。
有了邻接列表,寻找序列的方法就发生变化了。我们不再逐个替换字母,而是从start出发,遍历start的邻接顶点,将邻接顶点放入队列中。并重复操作直到队列为空。还有一个发生变化的地方是去重操作。由于不再遍历字典,现在我们发现非同层出现重复的单词就跳过它而不是从字典里删去。
剩下的生成路径的方法仍然和BFS2类似,全部代码如下:
class Solution {
public:
~Solution()
{
for(auto iter = pool_.begin(); iter != pool_.end(); ++iter)
{
delete *iter;
}
}
std::vector<std::vector<std::string> > findLadders(std::string start, std::string end, std::unordered_set<std::string> &dict)
{
nextPoolPos_ = 0;
std::unordered_map<std::string, std::unordered_set<std::string>> adjacencyList;
std::string word;
for (auto iter = dict.begin(); iter != dict.end(); ++iter)
{
word = *iter;
BuildAdjacencyList(word, adjacencyList, dict);
}
std::vector<std::vector<std::string>> result;
std::queue<PathTag*> candidate;
std::unordered_map<std::string, int> usedWord;
std::string currentString;
bool foundShortest = false;
size_t shortest = 0;
candidate.push(AllocatePathTag(nullptr, start, 1));
while(!candidate.empty())
{
PathTag* current = candidate.front();
if(foundShortest && current->length_ >= shortest)
{
break;
}
candidate.pop();
auto adjacentIter = adjacencyList.find(current->value_);
if(adjacentIter != adjacencyList.end())
{
for(auto iter = adjacentIter->second.begin(); iter != adjacentIter->second.end(); ++iter)
{
if(*iter == end)
{
GeneratePath(result, current, *iter);
foundShortest = true;
shortest = result.rbegin()->size();
continue;
}
auto usedIter = usedWord.find(*iter);
if(usedIter != usedWord.end() && usedIter->second != current->length_ + 1)
{
continue;
}
usedWord[*iter] = current->length_ + 1;
candidate.push(AllocatePathTag(current, *iter, current->length_ + 1));
}
}
else
{
continue;
}
}
return result;
}
private:
struct PathTag
{
PathTag* parent_;
std::string value_;
int length_;
PathTag(PathTag* parent, const std::string& value, int length) : parent_(parent), value_(value), length_(length)
{
}
};
PathTag* AllocatePathTag(PathTag* parent, const std::string& value, int length)
{
if(nextPoolPos_ >= pool_.size())
{
for(int i = 0; i < 100; ++i)
{
PathTag* newTag = new PathTag(nullptr, " ", 0);
pool_.push_back(newTag);
}
}
PathTag* toReturn = pool_[nextPoolPos_];
toReturn->parent_ = parent;
toReturn->value_ = value;
toReturn->length_ = length;
++nextPoolPos_;
return toReturn;
}
int nextPoolPos_;
std::vector<PathTag*> pool_;
void GeneratePath(std::vector<std::vector<std::string>>& result, PathTag* pathTag, const std::string& end)
{
std::vector<std::string> path;
path.push_back(end);
while(pathTag != nullptr)
{
path.push_back(pathTag->value_);
pathTag = pathTag->parent_;
}
size_t left = 0;
size_t right = path.size() - 1;
while(left < right)
{
std::swap(path[left], path[right]);
++left;
--right;
}
result.push_back(path);
}
void BuildAdjacencyList(std::string& word, std::unordered_map<std::string, std::unordered_set<std::string>>& adjacencyList, const std::unordered_set<std::string>& dict)
{
std::string original = word;
for(size_t pos = 0; pos < word.size(); ++pos)
{
char beforeChange = ' ';
for(int i = 'a'; i <= 'z'; ++i)
{
beforeChange = word[pos];
if(beforeChange == i)
{
continue;
}
word[pos] = i;
if(dict.count(word) > 0)
{
auto iter = adjacencyList.find(original);
if(iter != adjacencyList.end())
{
iter->second.insert(word);
}
else
{
adjacencyList.insert(std::pair<std::string, std::unordered_set<std::string>>(original, std::unordered_set<std::string>()));
adjacencyList[original].insert(word);
}
}
word[pos] = beforeChange;
}
}
}
};
邻接列表BFS
一种更快的解决方案
下面再介绍一种更快的解决方案,思路及代码来自niaokedaoren的博客。http://blog.csdn.net/niaokedaoren/article/details/8884938
前一个解决方案虽然能通过大数据集测试,但是为了保存路径信息我们额外引入了一个结构体而且因为需要用到指针使用了大量的new操作。还有什么不用保存所有路径信息的办法?
niaokedaoren的方案中使用了一个前驱单词表,即记录每一个单词的前驱单词是哪些。这样在遍历完毕后,我们从end出发递归就能把所有路径生成出来。但是由于前驱单词表不能记录当前的层次信息,似乎我们没法完成去重的工作。这个方案的巧妙之处就在于它没有使用我们通常的队列保存待处理的单词,一个单词一个单词先进先出处理的方法,而是使用两个vector来模拟队列的操作。我们从vector 1中遍历单词进行转换尝试,发现能转换的单词后将其放入vector 2中。当vector 1中的单词处理完毕后即为一层处理完毕,它里面的单词就可以从字典里删去了。接着我们对vector 2进行同样处理,如此反复直到当前处理的vector中不再有单词。我们发现vector 1和vector 2在不断地交换正处理容器和待处理容器的身份,因此可以通过将其放入一个数组中,每次循环对数组下标值取反实现身份的交替:
int current = 0;
int previous = 1;
循环
current = !current;
previous = !previous;
......
循环结束
class Solution {
public:
vector<vector<string> > findLadders(string start, string end, unordered_set<string> &dict) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
pathes.clear();
dict.insert(start);
dict.insert(end);
vector<string> prev;
unordered_map<string, vector<string> > traces;
for (unordered_set<string>::const_iterator citr = dict.begin();
citr != dict.end(); citr++) {
traces[*citr] = prev;
}
vector<unordered_set<string> > layers(2);
int cur = 0;
int pre = 1;
layers[cur].insert(start);
while (true) {
cur = !cur;
pre = !pre;
for (unordered_set<string>::const_iterator citr = layers[pre].begin();
citr != layers[pre].end(); citr++)
dict.erase(*citr);
layers[cur].clear();
for (unordered_set<string>::const_iterator citr = layers[pre].begin();
citr != layers[pre].end(); citr++) {
for (int n=0; n<(*citr).size(); n++) {
string word = *citr;
int stop = word[n] - 'a';
for (int i=(stop+1)%26; i!=stop; i=(i+1)%26) {
word[n] = 'a' + i;
if (dict.find(word) != dict.end()) {
traces[word].push_back(*citr);
layers[cur].insert(word);
}
}
}
}
if (layers[cur].size() == 0)
return pathes;
if (layers[cur].count(end))
break;
}
vector<string> path;
buildPath(traces, path, end);
return pathes;
}
private:
void buildPath(unordered_map<string, vector<string> > &traces,
vector<string> &path, const string &word) {
if (traces[word].size() == 0) {
path.push_back(word);
vector<string> curPath = path;
reverse(curPath.begin(), curPath.end());
pathes.push_back(curPath);
path.pop_back();
return;
}
const vector<string> &prevs = traces[word];
path.push_back(word);
for (vector<string>::const_iterator citr = prevs.begin();
citr != prevs.end(); citr++) {
buildPath(traces, path, *citr);
}
path.pop_back();
}
vector<vector<string> > pathes;
};