当前位置:   article > 正文

leetcode126. 单词接龙 II_java给定两个单词(beginword 和 endword)和一个字典 wordlist找出所有从

java给定两个单词(beginword 和 endword)和一个字典 wordlist找出所有从 beginwo

给定两个单词(beginWord 和 endWord)和一个字典 wordList,找出所有从 beginWord 到 endWord 的最短转换序列。

转换需遵循如下规则:
每次转换只能改变一个字母。
转换过程中的中间单词必须是字典中的单词。
说明:
如果不存在这样的转换序列,返回一个空列表。
所有单词具有相同的长度。
所有单词只由小写字母组成。
字典中不存在重复的单词。
你可以假设 beginWord 和 endWord 是非空的,且二者不相同。
示例 1:
输入:
beginWord = “hit”,
endWord = “cog”,
wordList = [“hot”,“dot”,“dog”,“lot”,“log”,“cog”]
输出:
[
[“hit”,“hot”,“dot”,“dog”,“cog”],
[“hit”,“hot”,“lot”,“log”,“cog”]
]
示例 2:
输入:
beginWord = “hit”
endWord = “cog”
wordList = [“hot”,“dot”,“dog”,“lot”,“log”]
输出: []
解释: endWord “cog” 不在字典中,所以不存在符合要求的转换序列。

注意是找最短的不是所有的,参考leetcode127. 单词接龙
class Solution:
    def findLadders(self, beginWord: str, endWord: str, wordList: List[str]) -> List[List[str]]:
        beginList, wordSet, res = [[beginWord]], set(wordList), []
        if endWord not in wordList:
            return res
        while beginList:
            for one in beginList:
                if one[-1] in wordSet:
                    wordSet.remove(one[-1])
            for _ in range(len(beginList)):
                one = beginList.pop(0)
                word = one[-1]
                for i in range(len(word)):
                    tmp = list(word)
                    for c in list(map(chr, range(ord('a'), ord('z')+1))):
                        tmp[i] = c
                        str_tmp = ''.join(tmp)
                        if str_tmp == endWord:
                            res.append(one+[str_tmp])
                        elif str_tmp in wordSet:
                            beginList.append(one+[str_tmp])
            if res:
                return res
        return res
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/144287
推荐阅读
相关标签
  

闽ICP备14008679号