leetcode之Word Break

题目意思:

Given a string s and a dictionary of words dict, determine ifs 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".

大意就是:给定字符串s和单词字典dict,判断s中的字符串能否被分割成多个字符串,这些字符串属于dict。

题目思路:用到动态规划。动态规划一直不熟。

                   定义一个bool型数组res[s.length()],res[i]是表示到字符串s的第i个元素为止能不能用字典中的词来表示思路是对于每个以i为结尾的子串,看看他是不是在字典里面以及他之前的元素对应的res[j]是不是true,如果都成立,那么res[i]为true。

代码:(参考答案的结果)

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


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值