当前位置:   article > 正文

【LeetCode】127. 单词接龙 结题报告 (C++)_单词接龙c++解法

单词接龙c++解法

原题地址: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" 不在字典中,所以无法进行转换。

 

解题方案:

从本题开始,就要学习广度优先遍历了。进行广度优先遍历,需要使用队列。

本题解法只是看了大概的意思,写法有些过于麻烦,以后再进行优化。

  1. class Solution {
  2. public:
  3. int ladderLength(string beginWord, string endWord, vector<string>& wordList) {
  4. queue<string> q;
  5. map<string,int> m1; //储存容器中的字符串便于查找是否存在
  6. map<string,int> re; //储存结果
  7. int n = wordList.size();
  8. for(int i = 0; i < n; i ++)
  9. m1[wordList[i]] = 1;
  10. re[beginWord] = 1;
  11. q.push(beginWord);
  12. while ((!q.empty()) && m1.size())
  13. {
  14. string now = q.front();
  15. q.pop();
  16. int num = re[now];
  17. int llen = now.size();
  18. for (int i = 0; i < llen; i ++)
  19. {
  20. string temp = now;
  21. for(char c = 'a' ; c <= 'z'; c ++)
  22. {
  23. if(temp[i] == c)
  24. continue;
  25. else
  26. temp[i] = c;
  27. if(m1.find(temp) != m1.end())
  28. {
  29. if(temp == endWord)
  30. return num + 1;
  31. q.push(temp);
  32. re[temp] = num + 1;
  33. m1.erase(temp);
  34. }
  35. }
  36. }
  37. }
  38. return 0;
  39. }
  40. };

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/144293
推荐阅读
相关标签
  

闽ICP备14008679号