{"id":1035,"date":"2025-12-24T06:06:56","date_gmt":"2025-12-23T22:06:56","guid":{"rendered":"https:\/\/www.guanhaobo.cn\/?p=1035"},"modified":"2025-12-24T06:06:56","modified_gmt":"2025-12-23T22:06:56","slug":"leetcode-139-%e5%8d%95%e8%af%8d%e6%8b%86%e5%88%86","status":"publish","type":"post","link":"https:\/\/www.guanhaobo.cn\/?p=1035","title":{"rendered":"LeetCode 139 \u2013 \u5355\u8bcd\u62c6\u5206"},"content":{"rendered":"<h1>\u9898\u76ee\u63cf\u8ff0<\/h1>\n<p>\u7ed9\u4f60\u4e00\u4e2a\u5b57\u7b26\u4e32 s \u548c\u4e00\u4e2a\u5b57\u7b26\u4e32\u5217\u8868 wordDict \u4f5c\u4e3a\u5b57\u5178\u3002\u5982\u679c\u53ef\u4ee5\u5229\u7528\u5b57\u5178\u4e2d\u51fa\u73b0\u7684\u4e00\u4e2a\u6216\u591a\u4e2a\u5355\u8bcd\u62fc\u63a5\u51fa s \u5219\u8fd4\u56de true\u3002<br \/>\n\u6ce8\u610f\uff1a\u4e0d\u8981\u6c42\u5b57\u5178\u4e2d\u51fa\u73b0\u7684\u5355\u8bcd\u5168\u90e8\u90fd\u4f7f\u7528\uff0c\u5e76\u4e14\u5b57\u5178\u4e2d\u7684\u5355\u8bcd\u53ef\u4ee5\u91cd\u590d\u4f7f\u7528\u3002<\/p>\n<p>\u793a\u4f8b\uff1a<br \/>\n\u8f93\u5165: s = &#8220;leetcode&#8221;, wordDict = [&#8220;leet&#8221;, &#8220;code&#8221;]<br \/>\n\u8f93\u51fa: true<br \/>\n\u89e3\u91ca: \u8fd4\u56de true \u56e0\u4e3a &#8220;leetcode&#8221; \u53ef\u4ee5\u7531 &#8220;leet&#8221; \u548c &#8220;code&#8221; \u62fc\u63a5\u6210\u3002<\/p>\n<h1>\u9898\u76ee\u5206\u6790<\/h1>\n<p>\u52a8\u6001\u89c4\u5212\u3002<br \/>\n\u8bbe ans[i] \u8868\u793a\u662f\u5426\u80fd\u62fc\u63a5\u51fa s \u4e2d\u957f\u5ea6\u4e3a i \u7684\u524d\u7f00\uff0c\u5219 <code>ans[i] = ans[i] || ans[i - \u5b57\u5178\u4e2d\u7684\u5355\u8bcd\u957f\u5ea6]<\/code>\u3002<br \/>\n\u679a\u4e3e\u5b57\u5178\u5355\u8bcd\u6216\u540e\u7f00\u957f\u5ea6\u90fd\u53ef\u4ee5\uff0c\u53ea\u8981\u4e3a true \u5c31\u9000\u51fa\uff0c\u7136\u540e\u8ba1\u7b97\u4e0b\u4e00\u4e2a\u4f4d\u7f6e\u3002<\/p>\n<h1>Java<\/h1>\n<pre><code class=\"language-java line-numbers\">public boolean wordBreak(String s, List&lt;String&gt; wordDict) {\n    Set&lt;String&gt; set = new HashSet&lt;&gt;(wordDict);\n    boolean[] ans = new boolean[s.length() + 1];\n    ans[0] = true;\n    \/\/ \u679a\u4e3e s \u957f\u5ea6 i\n    for (int i = 1; i &lt;= s.length(); i++) {\n        \/\/ \u679a\u4e3e\u53f3\u4fa7\u957f\u5ea6 l\n        for (int l = 1; l &lt;= i; l++) {\n            if (set.contains(s.substring(i - l, i))) {\n                ans[i] = ans[i] || ans[i - l];\n            }\n            if (ans[i]) {\n                break;\n            }\n        }\n    }\n    return ans[s.length()];\n}\n<\/code><\/pre>\n<h1>Kotlin<\/h1>\n<pre><code class=\"language-kotlin line-numbers\">fun wordBreak(s: String, wordDict: List&lt;String&gt;): Boolean {\n    val ans = BooleanArray(s.length + 1)\n    val set = wordDict.toSet()\n    ans[0] = true\n    for (i in 1..s.length) {\n        for (j in 1..i) {\n            if (set.contains(s.substring(i - j, i))) {\n                ans[i] = ans[i] || ans[i - j]\n            }\n            if (ans[i]) {\n                break;\n            }\n        }\n    }\n    return ans.last()\n}\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u9898\u76ee\u63cf\u8ff0 \u7ed9\u4f60\u4e00\u4e2a\u5b57\u7b26\u4e32 s \u548c\u4e00\u4e2a\u5b57\u7b26\u4e32\u5217\u8868 wordDict \u4f5c\u4e3a\u5b57\u5178\u3002\u5982\u679c\u53ef\u4ee5\u5229\u7528\u5b57\u5178\u4e2d\u51fa\u73b0\u7684\u4e00\u4e2a\u6216\u591a\u4e2a [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[20,40,45],"class_list":["post-1035","post","type-post","status-publish","format-standard","hentry","category-algo","tag-leetcode","tag-40","tag-45"],"_links":{"self":[{"href":"https:\/\/www.guanhaobo.cn\/index.php?rest_route=\/wp\/v2\/posts\/1035","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.guanhaobo.cn\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.guanhaobo.cn\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.guanhaobo.cn\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guanhaobo.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1035"}],"version-history":[{"count":1,"href":"https:\/\/www.guanhaobo.cn\/index.php?rest_route=\/wp\/v2\/posts\/1035\/revisions"}],"predecessor-version":[{"id":1036,"href":"https:\/\/www.guanhaobo.cn\/index.php?rest_route=\/wp\/v2\/posts\/1035\/revisions\/1036"}],"wp:attachment":[{"href":"https:\/\/www.guanhaobo.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1035"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guanhaobo.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1035"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guanhaobo.cn\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1035"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}