给你一个字符串 s 和一个字符串列表 wordDict 作为字典。请你判断是否可以利用字典中出现的单词拼接出 s 。
注意:不要求字典中出现的单词全部都使用,并且字典中的单词可以重复使用。
输入: s = "leetcode", wordDict = ["leet", "code"]
输出: true
解释: 返回 true 因为 "leetcode" 可以由 "leet" 和 "code" 拼接成
> 我的解法
class Solution {
private:
int process(string a, int startdex, string b) {
int len = b.size();
for (int i = 0; i < len; i++, startdex++) {
if(startdex >= a.size()) return -1;
if (b[i] != a[startdex]) return -1;
}
return startdex;
}
public:
bool wordBreak(string s, vector<string>& wordDict) {
vector<bool> dp(s.size() + 1, false);
dp[0] = true;
//求排列数
for (int i = 0; i < s.size(); i++) { //先背包
if (dp[i] == true) {
for (int j = 0; j < wordDict.size(); j++) { //在物品
int nextdex = process(s, i, wordDict[j]);
if (nextdex != -1 && nextdex <= s.size()) {
dp[nextdex] = true;
}
}
}
}
return dp[s.size()];
}
};
> 标准解法
class Solution {
public:
bool wordBreak(string s, vector<string>& wordDict) {
unordered_set<string> wordSet(wordDict.begin(), wordDict.end());
vector<bool> dp(s.size() + 1, false);
dp[0] = true;
for (int i = 1; i <= s.size(); i++) { // 遍历背包
for (int j = 0; j < i; j++) { // 遍历物品
string word = s.substr(j, i - j); //substr(起始位置,截取的个数)
if (wordSet.find(word) != wordSet.end() && dp[j]) {
dp[i] = true;
}
}
}
return dp[s.size()];
}
};
标签:int,单词,拆分,startdex,wordDict,139,true,dp,size
From: https://www.cnblogs.com/lihaoxiang/p/17443375.html