{"id":229,"date":"2024-11-29T22:18:15","date_gmt":"2024-11-29T14:18:15","guid":{"rendered":"http:\/\/getzs.online\/?p=229"},"modified":"2024-11-30T10:34:28","modified_gmt":"2024-11-30T02:34:28","slug":"leetcode-hot-100-5","status":"publish","type":"post","link":"https:\/\/hello.getzs.online\/index.php\/2024\/11\/29\/leetcode-hot-100-5\/","title":{"rendered":"LeetCode Hot100 -5"},"content":{"rendered":"\n<p><a href=\"https:\/\/leetcode.cn\/problems\/move-zeroes\/description\/?envType=study-plan-v2&amp;envId=top-100-liked\">283. \u79fb\u52a8\u96f6<\/a><\/p>\n\n\n\n<p>\u7ed9\u5b9a\u4e00\u4e2a\u6570\u7ec4&nbsp;<code>nums<\/code>\uff0c\u7f16\u5199\u4e00\u4e2a\u51fd\u6570\u5c06\u6240\u6709&nbsp;<code>0<\/code>&nbsp;\u79fb\u52a8\u5230\u6570\u7ec4\u7684\u672b\u5c3e\uff0c\u540c\u65f6\u4fdd\u6301\u975e\u96f6\u5143\u7d20\u7684\u76f8\u5bf9\u987a\u5e8f\u3002<\/p>\n\n\n\n<p><strong>\u8bf7\u6ce8\u610f<\/strong>&nbsp;\uff0c\u5fc5\u987b\u5728\u4e0d\u590d\u5236\u6570\u7ec4\u7684\u60c5\u51b5\u4e0b\u539f\u5730\u5bf9\u6570\u7ec4\u8fdb\u884c\u64cd\u4f5c\u3002<\/p>\n\n\n\n<p><strong>\u793a\u4f8b 1:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>\u8f93\u5165:<\/strong> nums = <code>[0,1,0,3,12]<\/code><br><strong>\u8f93\u51fa:<\/strong> <code>[1,3,12,0,0]<\/code><\/pre>\n\n\n\n<p><strong>\u793a\u4f8b 2:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>\u8f93\u5165:<\/strong> nums = <code>[0]<\/code>\n<strong>\u8f93\u51fa:<\/strong> <code>[0]<\/code><\/pre>\n\n\n\n<p><strong>\u63d0\u793a<\/strong>:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>1 &lt;= nums.length &lt;= 10<sup>4<\/sup><\/code><\/li>\n\n\n\n<li><code>-2<sup>31<\/sup>\u00a0&lt;= nums[i] &lt;= 2<sup>31<\/sup>\u00a0- 1<\/code><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">\u53cc\u6307\u9488\u505a\u6cd5\uff1a<\/h2>\n\n\n\n<p>\u901a\u8fc7\u679a\u4e3e\uff0c\u5148\u627e\u5230\u9996\u4e2a0\uff0c\u5728\u627e\u8fd9\u4e2a0\u540e\u9762\u7684\u9996\u4e2a\u975e0\u8fdb\u884c\u4ea4\u6362\uff0c\u590d\u6742\u5ea6O(n)\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\tpublic void moveZeroes(int&#91;] nums) {\n\t\tint n = nums.length;\n\t\tint i = 0, j = 0;\n\t\twhile(j &lt; n){\n\t\t\twhile(i &lt; n &amp;&amp; nums&#91;i] != 0){\n\t\t\t\ti++;\n\t\t\t}\n\t\t\tj = i;\n\t\t\twhile(j &lt; n &amp;&amp; nums&#91;j] == 0){\n\t\t\t\tj++;\n\t\t\t}\n\t\t\tif(j &lt; n){\n\t\t\t\tint team=nums&#91;j];\n\t\t\t\tnums&#91;j]=nums&#91;i];\n\t\t\t\tnums&#91;i]=team;\n\t\t\t}\n\t\t}\n\t}<\/code><\/pre>\n\n\n\n<p>\u4f18\u5316\uff1a<\/p>\n\n\n\n<p>\u901a\u8fc7\u679a\u4e3e\u975e\u96f6\u7684\u6570\uff0c\u4ece0\u5f00\u59cb\u5f80\u540e\u4f9d\u6b21\u6392\u653e\u3002\u590d\u6742\u5ea6O(n)\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>    public void moveZeroes(int&#91;] nums) {\n        int i = 0;\n        for (int j = 0; j &lt; nums.length ; j++) {\n            if (nums&#91;j] != 0) {\n                int temp = nums&#91;i];\n                nums&#91;i] = nums&#91;j];\n                nums&#91;j] = temp;\n                i++;\n            }\n        }\n    }<\/code><\/pre>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>283. \u79fb\u52a8\u96f6 \u7ed9\u5b9a\u4e00\u4e2a\u6570\u7ec4&nbsp;nums\uff0c\u7f16\u5199\u4e00\u4e2a\u51fd\u6570\u5c06\u6240\u6709&nbsp;0&nbsp;\u79fb\u52a8\u5230\u6570\u7ec4\u7684\u672b [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[3],"class_list":["post-229","post","type-post","status-publish","format-standard","hentry","category-leetcode","tag-leetcode-hot100"],"_links":{"self":[{"href":"https:\/\/hello.getzs.online\/index.php\/wp-json\/wp\/v2\/posts\/229","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hello.getzs.online\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hello.getzs.online\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hello.getzs.online\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/hello.getzs.online\/index.php\/wp-json\/wp\/v2\/comments?post=229"}],"version-history":[{"count":2,"href":"https:\/\/hello.getzs.online\/index.php\/wp-json\/wp\/v2\/posts\/229\/revisions"}],"predecessor-version":[{"id":238,"href":"https:\/\/hello.getzs.online\/index.php\/wp-json\/wp\/v2\/posts\/229\/revisions\/238"}],"wp:attachment":[{"href":"https:\/\/hello.getzs.online\/index.php\/wp-json\/wp\/v2\/media?parent=229"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hello.getzs.online\/index.php\/wp-json\/wp\/v2\/categories?post=229"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hello.getzs.online\/index.php\/wp-json\/wp\/v2\/tags?post=229"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}