博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Word Break
阅读量:6533 次
发布时间:2019-06-24

本文共 560 字,大约阅读时间需要 1 分钟。

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

 

算法:在网上查到的,动态规划算法

1 class Solution { 2 public: 3     bool wordBreak(string s, unordered_set
&dict) { 4 int len=s.size(); 5 bool *k=new bool[s.size()]; 6 memset(k,false,s.size()); 7 for(int i=0;i

 

转载于:https://www.cnblogs.com/sqxw/p/4005675.html

你可能感兴趣的文章
[转]项目中Struts/Spring/Hibernate的基本流程
查看>>
看雪精华内容下载
查看>>
一句话判断当前机器windows版本
查看>>
因子得分
查看>>
处理不完整数据集
查看>>
Access restriction: The type FtpClient is not acce
查看>>
python学习笔记10(用户交互程序)
查看>>
STL源码剖析之算法:mismatch
查看>>
linux 安全
查看>>
String Boot中@Controller和@RestController的区别?
查看>>
混淆 泛型 反射
查看>>
scala Option,None和Some
查看>>
CentOS 5.5 下 rsync 使用技巧与权限问题解读
查看>>
C++ stl
查看>>
linux下的 python开发环境
查看>>
edx 汉化 lms 主讲教师->分析
查看>>
Windows8手机有截图功能?
查看>>
从ORACLE转战虚拟化 与VMware展开肉搏战来看
查看>>
新建文章 1
查看>>
CISCO无线AP胖瘦升级
查看>>