首页 > 其他 > 详细

Leetcode-Word Break II

时间:2014-12-12 06:37:34      阅读:231      评论:0      收藏:0      [点我收藏+]

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"].

Analysis:

Use DP. d[i] = sum of (d[j]*s[j...i]) for j=i-1...0

Leetcode-Word Break II

原文:http://www.cnblogs.com/lishiblog/p/4158879.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!