您的位置:首页 > 其它

Word Break

2015-07-31 14:36 351 查看
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"
.

利用动态规划算法,创建一个vector记录0-i的字符串是否可以由字典中的词组成,若可以则继续判断剩下的是否可以由字典词组成。为防止s的一部分可以分割而另一部分不可分割,需全部遍历一遍s,而不能根据i跳跃遍历。

class Solution {
public:
bool wordBreak(string s, unordered_set<string>& wordDict) {
int n=s.length();
if(n<1) return true;
if(wordDict.empty()) return false;
vector<bool> dp(n+1,false);
dp[0]=true;
for(int i=0;i<n;i++)
{
if(dp[i])
{
for(int j=i;j<n;j++)
{
string tmps=s.substr(i,j-i+1);
if(wordDict.count(tmps))
dp[j+1]=true;
}
}
}
return dp
;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: