题目意思:
Given a string s and a dictionary of words dict, determine ifs 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和单词字典dict,判断s中的字符串能否被分割成多个字符串,这些字符串属于dict。
题目思路:用到动态规划。动态规划一直不熟。
定义一个bool型数组res[s.length()],res[i]是表示到字符串s的第i个元素为止能不能用字典中的词来表示。思路是对于每个以i为结尾的子串,看看他是不是在字典里面以及他之前的元素对应的res[j]是不是true,如果都成立,那么res[i]为true。
代码:(参考答案的结果)
class Solution {
public:
bool wordBreak(string s, unordered_set<string> &dict) {
if(s.size() == 0){
return false;
}
string::size_type length = s.size();
vector<bool> storage(length+1,false);
int i,j;
storage[0] = true;
for(i=1;i<length+1;i++){
for(j=i-1;j>=0;j--){
if(storage[j] && dict.find(s.substr(j,i-j)) != dict.end()){
storage[i] = true;
break;
}
}
}
return storage[length];
}
};