`
frank-liu
  • 浏览: 1682530 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

leetcode: Word Ladder

 
阅读更多

问题描述:

Given two words (beginWord and endWord), and a dictionary's word list, find the length of shortest transformation sequence from beginWord to endWord, such that:

  1. Only one letter can be changed at a time
  2. Each intermediate word must exist in the word list

For example,

Given:
beginWord = "hit"
endWord = "cog"
wordList = ["hot","dot","dog","lot","log"]

As one shortest transformation is "hit" -> "hot" -> "dot" -> "dog" -> "cog",
return its length 5.

Note:

  • Return 0 if there is no such transformation sequence.
  • All words have the same length.
  • All words contain only lowercase alphabetic characters.

原问题链接:https://leetcode.com/problems/word-ladder/

 

问题分析

  如果不是充分利用问题中提到的所有字符都假定为小写的话,问题会显得更加复杂,解决思路也更加不好找。在给定的字符串里,我们如果要转换成下一个字符串,可能它里面的每个字符都变化了一个,那么对于它转换的下一个目标字符,就有它字符个数n x 26那么多种可能。而具体哪一种能最快或者说最近的转换成目标字符呢,这确实不好说。

  这里我们可以利用一个树的广度优先遍历的思路,首先从beginWord的第一个字符开始,设置它的值从'a'到'z',然后来判断它是否在给定的集合wordList里。当然,因为我们这么转换可能会变成前面已经转换过的元素了,所以这种情况要避免。为了避免这种情况,需要定义一个Map<String, Integer>,这里的key表示已经遍历过的元素,而且这些元素也存在于wordList中。value则表示是第几次转换。

  另外,既然是要按照广度遍历的方式,我们需要将每次生成的符合条件的字符串加入到一个队列中,以方便后面的进一步转换。

  所以,详细的代码实现如下: 

 

public class Solution {
    public int ladderLength(String beginWord, String endWord, Set<String> wordList) {
        Map<String, Integer> map = new HashMap<>();
        map.put(beginWord, 1);
        Queue<String> queue = new LinkedList<>();
        queue.add(beginWord);
        while(!queue.isEmpty()) {
            String word = queue.remove();
            if(word.equals(endWord)) break;
            for(int i = 0; i < word.length(); i++) {
                char[] array = word.toCharArray();
                for(char c = 'a'; c <= 'z'; c++) {
                    array[i] = c;
                    String tmp = new String(array);
                    if(wordList.contains(tmp) && !map.containsKey(tmp)) {
                        map.put(tmp, map.get(word) + 1);
                        queue.add(tmp);
                    }
                }
            }
        }
        if(!map.containsKey(endWord)) return 0;
        return map.get(endWord);
    }
}
分享到:
评论

相关推荐

    leetcode316-LeetCode:leetcode的解决方案

    leetcode 316 LeetCode Summary Exclusive Time of Functions: 栈 Friend Circles:DFS ...Word Ladder:BFS,需要考虑wordlist的类型,如果是list会超时,所以需要选用set *126. Word Ladder II:待完

    126.Word Ladder II 词语阶梯二【LeetCode单题讲解系列】

    126.Word_Ladder_II_词语阶梯二【LeetCode单题讲解系列】

    javalruleetcode-leetcode:更多信息请访问Gitbook:https://wentao-shao.gitbook.io/

    java lru leetcode ...Ladder Add Two Numbers Matrix Spiral Matrix Mergesort [Algorithm Swap](Mergesort/Algorithm swap.md) Numbers Queue Stack Toposort Trie Tree Two Pointers Union Find

    python-leetcode题解之127-Word-Ladder

    python python_leetcode题解之127_Word_Ladder

    python-leetcode题解之126-Word-Ladder-II

    python python_leetcode题解之126_Word_Ladder_II

    js-leetcode题解之127-word-ladder.js

    javascript js_leetcode题解之127-word-ladder.js

    word ladder

    经典字梯游戏c++代码,经测试通过的哦,leetcode上面的题目

    leetcode-python:python中的leetcode

    力扣 Python 解决方案Leetcode 是准备技术编码面试的...特别案例: Word Ladder II,我的 AC 代码比这个 repo 中的代码慢得多。 但是这个 repo 中的一个得到了 TLE,不知道为什么。 任何想法都将受到高度赞赏。 谢谢!

    js-leetcode题解之126-word-ladder-ii.js

    javascript js_leetcode题解之126-word-ladder-ii.js

    LeetCode题解(java语言实现).pdf

    * Word Ladder:该题目要求将一个单词转换成另一个单词,实现方法使用了广度优先搜索算法。 二、树和图 * Median of Two Sorted Arrays Java:该题目要求找到两个排序数组的中位数,实现方法使用了二分查找算法。 ...

    leetcode多少题-word_ladder:字梯

    leetcode 多少题带有堆栈和队列的字梯 您将针对 Lewis Carroll ...在本作业中,您将实现一个函数word_ladder来生成这些字梯。 有许多可能的算法来生成字梯,但一个简单的算法使用堆栈和队列的组合,如

    leetcode1-240题中文题解,md格式,java

    1. leetCode-126-Word-LadderII.md:这涉及到第126题,词梯问题,通常是一个字符串转换问题,目标是找到两个单词之间的最短转换序列,每次只改变一个字母。 2. leetcode-224-Basic-Calculator.md:这是第224题,基础...

    leetcode刷题LeetCode1500道单词接龙Python3

    在LeetCode上,单词接龙类问题可能表现为“Anagrams”(同字母异序词)或者“Word Ladder”(单词阶梯),这些题目要求高效地搜索满足条件的单词序列。 【压缩包子文件的文件名称列表】"LeetCode-main"可能包含了一...

    LeetCode题解 - Java语言实现-181页.pdf

    6. Word Ladder 单词梯是一个字符串问题,要求将一个单词转换为另一个单词,并且每次转换只能改变一个字符。可以使用广度优先搜索或深度优先搜索来解决该问题。 7. Median of Two Sorted Arrays in Java 两个排序...

    Amazon亚麻 最新leetcode tag题

    5. **搜索和回溯**:对于“NumberofIslands”、“WordLadder”等题目,应聘者必须运用搜索算法,如广度优先搜索(BFS)、深度优先搜索(DFS)以及回溯算法来寻找解决方案。 6. **动态规划和贪心算法**:...

    java-leetcode-solutions:一些LeetCode问题的解决方案

    例如,`WordLadder.java`可能涉及到词链问题,需要理解图的邻接矩阵或邻接表表示。 6. **字符串处理**:如模式匹配、字符串反转、最长公共前缀等。`ValidPalindrome.java`可能涉及字符串的比较和操作。 7. **位...

    leetcode代码200题c++

    8. **Word Ladder II**:这是一个词链问题,涉及到广度优先搜索和回溯法,寻找从一个单词转换到另一个单词的最短路径。 9. **Regular Expression Matching**:这个涉及到字符串匹配和动态规划。实现一个函数来判断...

    LeetCode解题总结

    9.1 单词变换路径(Word Ladder) 9.1.1 是否存在变换路径 9.1.2 所有最短变换路径9.2 包围区域 10. 深度优先搜索 10.1 N皇后问题 10.2 恢复IP地址 10.3 集合元素之和 10.3.1 元素可以重复 10.3.2 元素不可重复 ...

    Leetcode代码以及解答(2)

    Word Ladder **知识点:** - **问题描述:** - 找到由开始到结尾的字符串的转换字符串集合,中间的转换字符串都要在给定的列表中,并且每一步只能改变一个字符。 - **解决方案分析:** - **原始方法:** - ...

    Coding Interview In Java

    leetcode Java 246 題目及解答 (英文) Contents 1 Rotate Array in Java 15 2 Reverse Words in a String II 19 3 Evaluate Reverse Polish Notation 21 4 Isomorphic Strings 25 5 Word Ladder 27 6 Word Ladder ...

Global site tag (gtag.js) - Google Analytics