139. Word Break
Posted いいえ敗者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了139. Word Break相关的知识,希望对你有一定的参考价值。
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做法
class Solution { public: bool wordBreak(string s, unordered_set<string>& wordDict) { int dp[s.size()]={0}; //dp[i]代表 前i个字符 组成的字符串能不能在字典里面找到 dp[0]=1; for(int i=1;i<=s.size();i++){ int j=i; while(j>=0&&dp[i]==0){ if(dp[j]==1&&wordDict.count(s.substr(j, i - j)))dp[i]=1; else j--; } } return dp[s.size()]; } };
以上是关于139. Word Break的主要内容,如果未能解决你的问题,请参考以下文章