单词切割ii

word-break-ii

http://www.nowcoder.com/questionTerminal/bd73f6b52fdc421d91b14f9c909f9104

用深度优先搜索,注意优化时间复杂度,否则会超时:

优化后

class Solution {
public:
    vector<string> wordBreak(string s, unordered_set<string> &dict) {
        unordered_map<string, vector<string>> mp;
        vector<string> res = dfs(dict, s, mp);
        return res;
    }

    vector<string> dfs(unordered_set<string> &dict, string s,
                       unordered_map<string, vector<string> > &mp) {
        if (s.empty()) return {""};
        if (mp.count(s)) return mp[s];
        vector<string> res;
        for (int i = 1; i <= s.size(); ++i) {
            string word = s.substr(0, i);
            if (!dict.count(word)) continue;
            vector<string> coming = dfs(dict, s.substr(i), mp);
            for (string str : coming) {
                res.push_back(word + (str.empty() ? "" : " ") + str);
            }
        }
        return mp[s] = res;
    }
};

优化前

class Solution {
public:
    vector<string> wordBreak(string s, unordered_set<string> &dict) {
        vector<string> res;
        dfs(dict, s, res, vector<string>());
        return res;
    }

    void dfs(unordered_set<string> &dict, string s, vector<string> &res, vector<string> words) {
        if (s.size() < 1) { res.push_back(vec2string(words)); return; }
        for (int i = 1; i <= s.size(); ++i) {
            string sub = s.substr(0, i);
            words.push_back(sub);
            if (dict.find(sub) != dict.end())
                dfs(dict, s.substr(i), res, words);
            words.pop_back();
        }
    }

    string vec2string(vector<string> vec) {
        string s;
        for (int i = 0; i < vec.size(); ++i) {
            s += vec[i];
            if (i != vec.size() - 1) s += " ";
        }
        return s;
    }
};
刷遍天下无敌手 文章被收录于专栏

秋招刷题历程

全部评论

相关推荐

ProMonkey2024:5个oc?厉害! 但是有一个小问题:谁问你了?😡我的意思是,谁在意?我告诉你,根本没人问你,在我们之中0人问了你,我把所有问你的人都请来 party 了,到场人数是0个人,誰问你了?WHO ASKED?谁问汝矣?誰があなたに聞きましたか?누가 물어봤어?我爬上了珠穆朗玛峰也没找到谁问你了,我刚刚潜入了世界上最大的射电望远镜也没开到那个问你的人的盒,在找到谁问你之前我连癌症的解药都发明了出来,我开了最大距离渲染也没找到谁问你了我活在这个被辐射蹂躏了多年的破碎世界的坟墓里目睹全球核战争把人类文明毁灭也没见到谁问你了(别的帖子偷来的,现学现卖😋)
点赞 评论 收藏
分享
11-14 16:13
已编辑
重庆科技大学 测试工程师
Amazarashi66:不进帖子我都知道🐮❤️网什么含金量
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务