题目描述:
给定一个非空字符串 s 和一个包含非空单词列表的字典 wordDict,判定 s 是否可以被空格拆分为一个或多个在字典中出现的单词。
说明:
拆分时可以重复使用字典中的单词。
你可以假设字典中没有重复的单词。
示例:
输入: s = "leetcode", wordDict = ["leet", "code"]
输出: true
解释: 返回 true 因为 "leetcode" 可以被拆分成 "leet code"。
输入: s = "catsandog", wordDict = ["cats", "dog", "sand", "and", "cat"]
输出: false
"leetcode"能否break,可以分解为:"l"是否在单词表中,剩余子串能否break
用回溯,考察所有的可能,用指针 start 从左往右扫描 s 串
如果指针的左侧的子串,是单词表中的单词,则对以指针为开头的剩余子串,递归考察
如果指针的左侧的子串不是单词表里的,回溯,进入别的分支
作者:hyj8
链接:https://leetcode-cn.com/problems/word-break/solution/shou-hui-tu-jie-san-chong-fang-fa-dfs-bfs-dong-tai/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
Java代码:
class Solution {
public boolean wordBreak(String s, List<String> wordDict) {
boolean[] visited = new boolean[s.length() + 1];
return dfs(s, 0, wordDict, visited);
}
private boolean dfs(String s, int start, List<String> wordDict, boolean[] visited) {
for(String word : wordDict) {
int nextStart = start + word.length();
if(nextStart > s.length() || visited[nextStart]) continue;
if(s.indexOf(word, start) == start) {
if(nextStart == s.length() || dfs(s, nextStart, wordDict, visited)) {
return true;
}
visited[nextStart] = true;
}
}
return false;
}
}
网友评论