Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word.
Return all such possible sentences.
For example, given
s = "catsanddog"
,
dict = ["cat", "cats", "and", "sand", "dog"]
.
A solution is ["cats and dog", "cat sand dog"]
.
请参考LeetCode-Word Break 查看该题的第一个版本:判断是否可分词成功。但是这一题,不仅要判断是否可以分词,还要找到所有的分词结果。
第一题是用dp[i]表示 字符串s[0....i-1]是否可以分词成功。
为了记录是怎么分词的,我们可以用dp[i]表示 字符串s[0.....i-1]的最后一个分词word,则s[0.....i-1]的倒数第二个分词即为dp[o....i-word.length()-1]。但这种方法只能记录一种分词方法,因此有必要把 dp[i] 定义 List<String>,这样就可以表示多种分词方法,最后使用DFS搜索,找到所有的分词方法。
例如对于上面的例子: s.length()=10, 则 dp[10] = {“cat”}, dp[7]={“and”,”sand”}, dp[4]={“cats”}, dp[3]={“cat”}, dp[0]={}, 其它的都为null。
dfs搜索的时,可以从后向前,也可以从前向后,只要保证最终结果的顺序即可。下面是用的从后向前搜索。
01 |
public class Solution {
|
02 |
public static List<String> wordBreak(String s, Set<String> dict) {
|
03 |
List<String> dp[] = new ArrayList[s.length()+ 1 ];
|
04 |
dp[ 0 ] = new ArrayList<String>();
|
05 |
for ( int i= 0 ; i<s.length(); i++){
|
07 |
if ( dp[i] == null ) continue ;
|
08 |
for (String word:dict){
|
09 |
int len = word.length();
|
11 |
if (end > s.length()) continue ;
|
12 |
if (s.substring(i,end).equals(word)){
|
14 |
dp[end] = new ArrayList<String>();
|
21 |
List<String> ans = new LinkedList<String>();
|
22 |
if (dp[s.length()] == null ) return ans;
|
23 |
ArrayList<String> tmp = new ArrayList<String>();
|
24 |
dfsStringList(dp,s.length(),ans, tmp);
|
28 |
public static void dfsStringList(List<String> dp[], int end,List<String> res, ArrayList<String> tmp){
|
30 |
String ans = tmp.get(tmp.size()- 1 );
|
31 |
for ( int i=tmp.size()- 2 ; i>= 0 ; i--)
|
32 |
ans += ( " " + tmp.get(i) );
|
36 |
for (String str:dp[end]){
|
38 |
dfsStringList(dp,end-str.length(), res, tmp);
|
39 |
tmp.remove(tmp.size()- 1 );
|
当然也有其他的解法,这个只是参考,效率其实还可以。
分享到:
相关推荐
Word Break II Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word. Return all such possible sentences. Example Example 1...
<HeaderStyle HorizontalAlign="Center"></HeaderStyle> <ItemStyle CssClass="dxgv"></ItemStyle> ... myDataGrid_d.Attributes.Add("style", "word-break:keep-all;word-wrap:normal");
复制代码代码如下:”c1″>safjaskflasjfklsajfklasjflksajflksjflkasfdsafdsfksafj</div><div class=c1>This is all English. This is all English. This is all English.</div><div class=c1>全是中文的情况。...
python python_leetcode题解之140_Word_Break_II
`word-break:break-all` 和 `word-wrap:break-word` 是CSS中用于控制文本换行的两个属性,它们都有各自的特点和适用场景。 首先,`word-break:break-all` 的作用是在任何可能的位置强制进行单词内部的换行。这意味...
**前端开源库-breakword** `breakword` 是一个专门针对前端开发的开源库,它的主要功能是处理文本断行问题,特别是在多语言环境下确保文本在指定长度内正确断开,保持良好的显示效果。这个库的核心在于它能计算字符...
javascript js_leetcode题解之140-word-break-ii.js
4. **140.py** - 可能是LeetCode的140题,"Word Break II"(单词拆分II),这是一道动态规划问题,需要构建一个动态规划数组来解决。 5. **139.py** - 这可能是LeetCode的139题,"Word Break"(单词拆分),与140题...
5. Word Break II 单词断词II是一个变体的问题,要求将字符串断词为单词,并且可以使用动态规划或Trie树来解决该问题。 6. Word Ladder 单词梯是一个字符串问题,要求将一个单词转换为另一个单词,并且每次转换...
* Word Break、Word Break II:该题目要求将字符串分割成单词,实现方法使用了动态规划和回溯算法。 * Word Ladder:该题目要求将一个单词转换成另一个单词,实现方法使用了广度优先搜索算法。 二、树和图 * ...
object.style.wordBreak="keep-all" 值 描述 normal 使用浏览器默认的换行规则。 break-all 允许在单词内换行。 keep-all 只能在半角空格或连字符处换行。 兼容性: 举个栗子: CSS Co
本文主要探讨了两个与文本换行密切相关的CSS属性:`word-wrap` 和 `word-break`,以及浏览器对它们的默认处理方式。 一、浏览器默认处理文本换行 默认情况下,浏览器采用`word-wrap: normal`策略,这意味着当一行...
兼容 IE 和 FF 的换行 CSS 推荐样式 最好的方式是 word-wrap:break-word; overflow:hidden; 而不是 word-wrap:break-word; word-break:break-all; 也不是 word-wrap:break-word; overflow:auto; 在 IE 下没有任何...
在本文中,我们要深入探讨的两个CSS属性是word-break与word-wrap。 首先,我们来看看浏览器的自动换行功能。浏览器在显示文本时会自动在容器(如浏览器窗口或div元素)的右端进行换行。换行的规则根据文本类型有所...
`word-break` 和 `word-wrap` 是两个非常重要的CSS属性,它们主要用于处理文本内容在容器内的换行规则,特别是在处理非标准长度的单词或字符串时。在描述中提到的场景是在一个`table`元素中应用这些样式,以确保内容...
#### 一、Word Break II - **知识点:**动态规划、回溯算法。 - **题目描述:**给定一个非空字符串s和一个包含非空单词列表的词典wordDict,在字符串中增加空格来构建一个句子,使得句子中所有的单词都在词典中。...
python python_leetcode题解之139_Word_Break