题干
给定一个非空字符串 s 和一个包含非空单词列表的字典 wordDict,判定 s 是否可以被空格拆分为一个或多个在字典中出现的单词。
说明:
拆分时可以重复使用字典中的单词。
你可以假设字典中没有重复的单词。
示例 1:
输入: s = "leetcode", wordDict = ["leet", "code"]
输出: true
解释: 返回 true 因为 "leetcode" 可以被拆分成 "leet code"。
示例 2:
输入: s = "applepenapple", wordDict = ["apple", "pen"]
输出: true
解释: 返回 true 因为 "applepenapple" 可以被拆分成 "apple pen apple"。
注意你可以重复使用字典中的单词。
示例 3:
输入: s = "catsandog", wordDict = ["cats", "dog", "sand", "and", "cat"]
输出: false
想法
动态规划呗
用Boolean dp[]来存0到对应位置的字符串是否能被字典表达,若dp[j]为真,
且j到i的字符串也在字典里就可以更新dp[i]为真
直接看代码很好懂
Java 代码
class Solution {
public boolean wordBreak(String s, List<String> wordDict) {
boolean [] dp=new boolean[s.length()+1];//用Boolean dp[]来存0到对应位置的字符串是否能被字典表达
dp[0]=true;
for(int i=1;i<=s.length();i++){
for(int j=0;j<i&& !dp[i];j++){
String check=s.substring(j,i);
dp[i] = dp[j] && wordDict.contains(check);//j真且之间的在字典里,i为真
}
}
return dp[s.length()];
}
}
更快的方法
class Solution {
private int getMaxLength(List<String> dict) {
int maxLength = 0;
// 得到字典中单词的最大长度
for (String word : dict) {
maxLength = Math.max(maxLength, word.length());
}
return maxLength;
}
public boolean wordBreak(String s, List<String> dict) {
if (s == null || s.length() == 0) {
return true;
}
int maxLength = getMaxLength(dict);
boolean[] canSegment = new boolean[s.length() + 1];
// 初值,使canSegment[1]对应第一个字母,方便阅读
canSegment[0] = true;
for (int i = 1; i <= s.length(); i++) {
canSegment[i] = false;
for (int lastWordLength = 1;
lastWordLength <= maxLength && lastWordLength <= i;
lastWordLength++) {
// 找到去掉某个长为lastWordLength的单词后,从0到i - lastWordLength位置的字符串是满足切分条件的
if (!canSegment[i - lastWordLength]) {
continue;
}
// 判断去掉的单词是不是在字典中
/* substring(int beginIndex, int endIndex)
* 从beginIndex开始取,到endIndex结束
* 从0开始数,其中不包括endIndex位置的字符
*/
String word = s.substring(i - lastWordLength, i);
if (dict.contains(word)) {
canSegment[i] = true;
break;
}
}
}
return canSegment[s.length()];
}
}
动态规划
要点是转换方程
不要浮躁的去想就行