码迷,mamicode.com
首页 > 其他好文 > 详细

Word Break -- leetcode

时间:2015-06-01 22:47:24      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:leetcode   dictionary   动态规划   segment   

Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.

For example, given
s = "leetcode",
dict = ["leet", "code"].

Return true because "leetcode" can be segmented as "leet code".

基本思路:

动态规划。

数组 dp[i],表示第i个字符以前是否可以分隔成单词。 i 从0开始。

已知dp[0..i]时,求dp[i+1],则需要偿试,s[k..i],  0<=k <=i, 进行偿试。


在leetcode上实际执行时间为12ms。


class Solution {
public:
    bool wordBreak(string s, unordered_set<string>& wordDict) {
        vector<bool> dp(s.size()+1);
        dp[0] = true;
        for (int i=1; i<=s.size(); i++) {
            for (int j=0; j<i; j++) {
                if (dp[j] && wordDict.find(s.substr(j, i-j)) != wordDict.end()) {
                    dp[i] = true;
                    break;
                }
            }
        }
        return dp[s.size()];
    }
};


Word Break -- leetcode

标签:leetcode   dictionary   动态规划   segment   

原文地址:http://blog.csdn.net/elton_xiao/article/details/46315201

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!