2024每日刷题(173)
Leetcode—139. 单词拆分
dp实现代码
class Solution {
public:
bool wordBreak(string s, vector<string>& wordDict) {
int n = s.size();
unordered_set<string> ust(wordDict.begin(), wordDict.end());
vector<bool> dp(n + 1, false);
function<bool(string)> isInDict = [&](string str) -> bool{
if(ust.find(str) != ust.end()) {
return true;
} else {
return false;
}
};
dp[0] = true;
for(int i = 1; i <= n; i++) {
for(int j = 0; j < i; j++) {
if(dp[j] && isInDict(s.substr(j, i - j))) {
dp[i] = true;
break;
}
}
}
return dp[n];
}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!