赞
踩
原题地址:https://leetcode-cn.com/problems/word-ladder/description/
题目描述:
给定两个单词(beginWord 和 endWord)和一个字典,找到从 beginWord 到 endWord 的最短转换序列的长度。转换需遵循如下规则:
每次转换只能改变一个字母。
转换过程中的中间单词必须是字典中的单词。
说明:
如果不存在这样的转换序列,返回 0。
所有单词具有相同的长度。
所有单词只由小写字母组成。
字典中不存在重复的单词。
你可以假设 beginWord 和 endWord 是非空的,且二者不相同。
示例 1:
输入:
beginWord = "hit",
endWord = "cog",
wordList = ["hot","dot","dog","lot","log","cog"]
输出: 5
解释: 一个最短转换序列是 "hit" -> "hot" -> "dot" -> "dog" -> "cog",
返回它的长度 5。
示例 2:
输入:
beginWord = "hit"
endWord = "cog"
wordList = ["hot","dot","dog","lot","log"]
输出: 0
解释: endWord "cog" 不在字典中,所以无法进行转换。
解题方案:
从本题开始,就要学习广度优先遍历了。进行广度优先遍历,需要使用队列。
本题解法只是看了大概的意思,写法有些过于麻烦,以后再进行优化。
- class Solution {
- public:
- int ladderLength(string beginWord, string endWord, vector<string>& wordList) {
- queue<string> q;
- map<string,int> m1; //储存容器中的字符串便于查找是否存在
- map<string,int> re; //储存结果
- int n = wordList.size();
- for(int i = 0; i < n; i ++)
- m1[wordList[i]] = 1;
- re[beginWord] = 1;
- q.push(beginWord);
- while ((!q.empty()) && m1.size())
- {
- string now = q.front();
- q.pop();
- int num = re[now];
- int llen = now.size();
- for (int i = 0; i < llen; i ++)
- {
- string temp = now;
- for(char c = 'a' ; c <= 'z'; c ++)
- {
- if(temp[i] == c)
- continue;
- else
- temp[i] = c;
- if(m1.find(temp) != m1.end())
- {
- if(temp == endWord)
- return num + 1;
- q.push(temp);
- re[temp] = num + 1;
- m1.erase(temp);
- }
- }
- }
- }
- return 0;
- }
- };
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。