您的位置:首页 > 其它

LeetCode – Refresh – Word Break

2015-03-25 08:18 253 查看
Differentiate it with Palindrome min cut!!!!!!!!!

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

}
}
}
return dp[len];
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: