码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode:Word Break 字符串分解为单词

时间:2014-09-11 16:54:22      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   strong   for   

Word Break

Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.

For example, given
s = "leetcode",
dict = ["leet", "code"].

Return true because "leetcode" can be segmented as "leet code".

解题分析:注意词典中的每个单词可以多用,比如 s = "bb"  dict = ["a", "b"]需要返回true

bubuko.com,布布扣

class Solution {
public:
    bool wordBreak(string s, unordered_set<string> &dict) {
        std::vector<bool> dp(s.size() + 1, false);  
        dp[0] = true;
        for (int i = 1; i <= s.size(); ++i) {
            for (int j = i - 1; j >= 0; --j) {
                std::string str = s.substr(j, i - j);
                if (dp.at(j) == true && dict.find(str) != dict.end()) {
                    dp.at(i) = true;
                }
            }
        }
        return dp.at(s.size());
    }
};

 

Word Break II

Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word.

Return all such possible sentences.

For example, given
s = "catsanddog",
dict = ["cat", "cats", "and", "sand", "dog"].

A solution is ["cats and dog", "cat sand dog"].

 

Leetcode:Word Break 字符串分解为单词

标签:style   blog   http   color   io   os   ar   strong   for   

原文地址:http://www.cnblogs.com/wwwjieo0/p/3966516.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!