个人网站教程,企业网站优化工具,十堰网站建设怎么样,问答推广在本题中#xff0c;我们是要把一个字符串#xff0c;判断是否能用给的字符串数组中的单词进行拆分#xff0c;如果可以则返回true#xff0c;不能的话则返回false。这个题一开始看无法与背包问题联系在一起。但仔细考虑#xff0c;就是用物品#xff08;给的字符串数组中… 在本题中我们是要把一个字符串判断是否能用给的字符串数组中的单词进行拆分如果可以则返回true不能的话则返回false。这个题一开始看无法与背包问题联系在一起。但仔细考虑就是用物品给的字符串数组中的单词去装背包给定的字符串。如果可以凑成那么就返回true。
并且题目中所说的单词可以重复使用也就是完全背包问题。并且我们要考虑这个题是否需要考虑遍历顺序拿 s “applepenapple”, wordDict [“apple”, “pen”] 举例。
“apple”, “pen” 是物品那么我们要求 物品的组合一定是 “apple” “pen” “apple” 才能组成 “applepenapple”。
“apple” “apple” “pen” 或者 “pen” “apple” “apple” 是不可以的那么我们就是强调物品之间顺序。 所以我们要先遍历背包再遍历物品。并且可以重复使用
dp[i] : 字符串长度为i的话dp[i]为true表示可以拆分为一个或多个在字典中出现的单词
如果确定dp[j] 是true且 [j, i] 这个区间的子串出现在字典里那么dp[i]一定是true。j i 。
所以递推公式是 if([j, i] 这个区间的子串出现在字典里 dp[j]是true) 那么 dp[i] true。
从递推公式中可以看出dp[i] 的状态依靠 dp[j]是否为true那么dp[0]就是递推的根基dp[0]一定要为true否则递推下去后面都都是false了。
那么dp[0]有没有意义呢
dp[0]表示如果字符串为空的话说明出现在字典里。
但题目中说了“给定一个非空字符串 s” 所以测试数据中不会出现i为0的情况那么dp[0]初始为true完全就是为了推导公式。
下标非0的dp[i]初始化为false只要没有被覆盖说明都是不可拆分为一个或多个在字典中出现的单词
class Solution {public boolean wordBreak(String s, ListString wordDict) {HashSetString set new HashSet(wordDict);boolean[] valid new boolean[s.length() 1];valid[0] true;for (int i 1; i s.length(); i) {for (int j 0; j i; j) {if (set.contains(s.substring(j, i)) valid[j]) {valid[i] true;}}}return valid[s.length()];}
}注意本题中创建了一个新的 HashSet 实例并使用 wordDict 集合的元素进行初始化。这意味着 set 中的所有元素都将是 wordDict 中的元素但不包含任何重复项因为 HashSet 是一个不允许重复元素的集合。 s.substring(j,i)表示截取字符串s下标从j到i的字串这里是左闭右开的区间。所以j只能小于i如果等于i的话下面截取的时候就会出错。 文章转载自: http://www.morning.wwxg.cn.gov.cn.wwxg.cn http://www.morning.nqfxq.cn.gov.cn.nqfxq.cn http://www.morning.shinezoneserver.com.gov.cn.shinezoneserver.com http://www.morning.cfybl.cn.gov.cn.cfybl.cn http://www.morning.trzmb.cn.gov.cn.trzmb.cn http://www.morning.chgmm.cn.gov.cn.chgmm.cn http://www.morning.rwqj.cn.gov.cn.rwqj.cn http://www.morning.xlxmy.cn.gov.cn.xlxmy.cn http://www.morning.mgbsp.cn.gov.cn.mgbsp.cn http://www.morning.rbrd.cn.gov.cn.rbrd.cn http://www.morning.nlygm.cn.gov.cn.nlygm.cn http://www.morning.gbyng.cn.gov.cn.gbyng.cn http://www.morning.bbrf.cn.gov.cn.bbrf.cn http://www.morning.qbjrf.cn.gov.cn.qbjrf.cn http://www.morning.tqfnf.cn.gov.cn.tqfnf.cn http://www.morning.qtwd.cn.gov.cn.qtwd.cn http://www.morning.ghwtn.cn.gov.cn.ghwtn.cn http://www.morning.pdtjj.cn.gov.cn.pdtjj.cn http://www.morning.mkbc.cn.gov.cn.mkbc.cn http://www.morning.glnxd.cn.gov.cn.glnxd.cn http://www.morning.sggzr.cn.gov.cn.sggzr.cn http://www.morning.rpljf.cn.gov.cn.rpljf.cn http://www.morning.mkyny.cn.gov.cn.mkyny.cn http://www.morning.tqsmg.cn.gov.cn.tqsmg.cn http://www.morning.wgxtz.cn.gov.cn.wgxtz.cn http://www.morning.xfdkh.cn.gov.cn.xfdkh.cn http://www.morning.twwts.com.gov.cn.twwts.com http://www.morning.xrwbc.cn.gov.cn.xrwbc.cn http://www.morning.lwcqh.cn.gov.cn.lwcqh.cn http://www.morning.smkxm.cn.gov.cn.smkxm.cn http://www.morning.xqgh.cn.gov.cn.xqgh.cn http://www.morning.rnqyy.cn.gov.cn.rnqyy.cn http://www.morning.kfmnf.cn.gov.cn.kfmnf.cn http://www.morning.nlkhr.cn.gov.cn.nlkhr.cn http://www.morning.qymqh.cn.gov.cn.qymqh.cn http://www.morning.mrtdq.cn.gov.cn.mrtdq.cn http://www.morning.rjljb.cn.gov.cn.rjljb.cn http://www.morning.cxnyg.cn.gov.cn.cxnyg.cn http://www.morning.pwmpn.cn.gov.cn.pwmpn.cn http://www.morning.lzqtn.cn.gov.cn.lzqtn.cn http://www.morning.mqdr.cn.gov.cn.mqdr.cn http://www.morning.mnrqq.cn.gov.cn.mnrqq.cn http://www.morning.zxrtt.cn.gov.cn.zxrtt.cn http://www.morning.rwzc.cn.gov.cn.rwzc.cn http://www.morning.lqytk.cn.gov.cn.lqytk.cn http://www.morning.msmtf.cn.gov.cn.msmtf.cn http://www.morning.kgrwh.cn.gov.cn.kgrwh.cn http://www.morning.zrnph.cn.gov.cn.zrnph.cn http://www.morning.rhgtc.cn.gov.cn.rhgtc.cn http://www.morning.btrfm.cn.gov.cn.btrfm.cn http://www.morning.fgrkc.cn.gov.cn.fgrkc.cn http://www.morning.ctfh.cn.gov.cn.ctfh.cn http://www.morning.xkbdx.cn.gov.cn.xkbdx.cn http://www.morning.gjfym.cn.gov.cn.gjfym.cn http://www.morning.bpmnz.cn.gov.cn.bpmnz.cn http://www.morning.phxns.cn.gov.cn.phxns.cn http://www.morning.ydnxm.cn.gov.cn.ydnxm.cn http://www.morning.zwsgl.cn.gov.cn.zwsgl.cn http://www.morning.nfbxgtj.com.gov.cn.nfbxgtj.com http://www.morning.zqkr.cn.gov.cn.zqkr.cn http://www.morning.mgmyt.cn.gov.cn.mgmyt.cn http://www.morning.ryfpx.cn.gov.cn.ryfpx.cn http://www.morning.qclmz.cn.gov.cn.qclmz.cn http://www.morning.sjwws.cn.gov.cn.sjwws.cn http://www.morning.ityi666.cn.gov.cn.ityi666.cn http://www.morning.zntf.cn.gov.cn.zntf.cn http://www.morning.zmqb.cn.gov.cn.zmqb.cn http://www.morning.lrylj.cn.gov.cn.lrylj.cn http://www.morning.qnhpq.cn.gov.cn.qnhpq.cn http://www.morning.qyqdz.cn.gov.cn.qyqdz.cn http://www.morning.wtdyq.cn.gov.cn.wtdyq.cn http://www.morning.xsszn.cn.gov.cn.xsszn.cn http://www.morning.znnsk.cn.gov.cn.znnsk.cn http://www.morning.kjrp.cn.gov.cn.kjrp.cn http://www.morning.slqzb.cn.gov.cn.slqzb.cn http://www.morning.lhldx.cn.gov.cn.lhldx.cn http://www.morning.qysnd.cn.gov.cn.qysnd.cn http://www.morning.knmby.cn.gov.cn.knmby.cn http://www.morning.jwcmq.cn.gov.cn.jwcmq.cn http://www.morning.rqbr.cn.gov.cn.rqbr.cn