LeetCode-127(中等)单词接龙

给定两个单词(beginWord 和 endWord)和一个字典,找到从 beginWord 到 endWord的最短转换序列的长度。转换需遵循如下规则:

  1. 每次转换只能改变一个字母。
  2. 转换过程中的中间单词必须是字典中的单词。

说明:

  • 如果不存在这样的转换序列,返回 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" 不在字典中,所以无法进行转换。

 

这是从首和尾两边开始,当遇到同一个单词的时候则结束

这里涉及到了unordered_set<string>的知识点

其中find() 函数,会返回一个迭代器。这个迭代器指向和参数哈希值匹配的元素,如果没有匹配的元素,会返回这个容器的结束迭代器。

class Solution {
public:
    int ladderLength(string beginWord, string endWord, vector<string>& wordList) {
        unordered_set<string> wordDict(wordList.begin(), wordList.end());
        if (wordDict.find(endWord) == wordDict.end()){
            return 0;//Not FOUND 404
        }
        unordered_set<string> beginSet{beginWord};
        unordered_set<string> endSet{endWord};
        int step = 1;
        for (; !beginSet.empty();){         //beginSet、endSet出现重合时,break
            unordered_set<string> tempSet;
            ++step;
            for (auto s : beginSet) {
                wordDict.erase(s);
            }
            for (auto s : beginSet) {
                for (int i = 0; i < s.size(); ++i){
                    string str = s;
                    for (char c = 'a'; c <= 'z'; ++c){
                        str[i] = c;
                        if (wordDict.find(str) == wordDict.end()){//没找到返回了结束迭代器
                            continue;
                        }
                        if (endSet.find(str) != endSet.end()){ //即找到str
                            return step;
                        }
                        tempSet.insert(str); 
                     //直到在worddict中找到了str,且str不在endset中,则插入到tempset中
                    }
                }
            }
            if (tempSet.size() < endSet.size()){
                beginSet = tempSet;
            } else {
                beginSet = endSet;
                endSet = tempSet;
            }
        }
        return 0;
    }
};

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值