{"id":26022,"date":"2024-11-24T10:59:03","date_gmt":"2024-11-24T02:59:03","guid":{"rendered":"https:\/\/fwq.ai\/blog\/26022\/"},"modified":"2024-11-24T10:59:03","modified_gmt":"2024-11-24T02:59:03","slug":"%e5%86%92%e6%b3%a1%e6%8e%92%e5%ba%8f%e4%b8%ad%e6%89%93%e5%8d%b0%e6%95%b0%e7%bb%84%e7%9a%84%e5%8f%98%e5%8c%96%ef%bc%9a%e4%b8%ba%e4%bb%80%e4%b9%88%e4%ba%a4%e6%8d%a2%e5%85%83%e7%b4%a0%e5%90%8e%ef%bc%8c-2","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/26022\/","title":{"rendered":"\u5192\u6ce1\u6392\u5e8f\u4e2d\u6253\u5370\u6570\u7ec4\u7684\u53d8\u5316\uff1a\u4e3a\u4ec0\u4e48\u4ea4\u6362\u5143\u7d20\u540e\uff0c\u539f\u59cb\u6570\u7ec4\u4e5f\u53d1\u751f\u4e86\u6539\u53d8\uff1f"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/img.php.cn\/upload\/article\/001\/246\/273\/173077617226835.jpg\" class=\"aligncenter\" title=\"\u5192\u6ce1\u6392\u5e8f\u4e2d\u6253\u5370\u6570\u7ec4\u7684\u53d8\u5316\uff1a\u4e3a\u4ec0\u4e48\u4ea4\u6362\u5143\u7d20\u540e\uff0c\u539f\u59cb\u6570\u7ec4\u4e5f\u53d1\u751f\u4e86\u6539\u53d8\uff1f\u63d2\u56fe\" alt=\"\u5192\u6ce1\u6392\u5e8f\u4e2d\u6253\u5370\u6570\u7ec4\u7684\u53d8\u5316\uff1a\u4e3a\u4ec0\u4e48\u4ea4\u6362\u5143\u7d20\u540e\uff0c\u539f\u59cb\u6570\u7ec4\u4e5f\u53d1\u751f\u4e86\u6539\u53d8\uff1f\u63d2\u56fe\" \/><\/p>\n<p><strong>\u6253\u5370\u6570\u7ec4\u5f15\u53d1\u7684\u56f0\u60d1<\/strong><\/p>\n<p>\u5728\u5b66\u4e60\u65f6\uff0c\u5bf9\u4e8e\u6253\u5370\u6570\u7ec4\u7684\u64cd\u4f5c\u4ea7\u751f\u4e86\u4e00\u4e2a\u4ee4\u4eba\u56f0\u60d1\u7684\u73b0\u8c61\u3002\u5728\u5143\u7d20\u4ea4\u6362\u4f4d\u7f6e\u524d\u6253\u5370\u7684\u6570\u7ec4\u7ed3\u6784\u4e0e\u4ea4\u6362\u540e\u6253\u5370\u7684\u6570\u7ec4\u7ed3\u6784\u4e0d\u540c\u3002\u4ee5\u4e0b\u4ee3\u7801\u793a\u4f8b\u6f14\u793a\u4e86\u8be5\u95ee\u9898\uff1a<\/p>\n<pre>function bubbleSort(array) {\n  for (let i = 0; i &lt; array.length - 1; i++) {\n    for (let j = i + 1; j &lt; array.length; j++) {\n      if (array[j] &lt; array[i]) {\n        const oldArr = JSON.parse(JSON.stringify(array));\n        console.log(oldArr);\n        [array[i], array[j]] = [array[j], array[i]];\n      }\n    }\n  }\n}\n\nvar arr = [1, 3, 6, 3, 23, 1, 34];\nbubbleSort(arr);<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u5728\u5143\u7d20\u4ea4\u6362\u4f4d\u7f6e\u524d\u6253\u5370\u7684\u6570\u7ec4\u7ed3\u6784\uff1a<\/p>\n<pre>[1, 3, 6, 3, 23, 1, 34]\n[1, 1, 6, 3, 23, 3, 34]\n[1, 1, 3, 6, 23, 3, 34]\n[1, 1, 3, 3, 23, 6, 34]<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u5728\u5143\u7d20\u4ea4\u6362\u4f4d\u7f6e\u540e\u6253\u5370\u7684\u6570\u7ec4\u7ed3\u6784\uff1a<\/p>\n<pre>[1, 3]\n[3, 6]\n[1, 6]\n[1, 3]\n[1, 23]<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u56f0\u60d1\u7684\u5173\u952e\u5728\u4e8e\uff0cJSON.parse(JSON.stringify()) \u590d\u5236\u4e86\u539f\u59cb\u6570\u7ec4\uff0c\u5e76\u6ca1\u6709\u89e3\u9664\u539f\u59cb\u6570\u7ec4\u548c\u590d\u5236\u6570\u7ec4\u4e4b\u95f4\u7684\u6307\u9488\u94fe\u63a5\u3002\u56e0\u6b64\uff0c\u5728\u5143\u7d20\u4ea4\u6362\u4f4d\u7f6e\u540e\uff0c\u539f\u59cb\u6570\u7ec4\u4e5f\u53d1\u751f\u4e86\u53d8\u5316\uff0c\u5bfc\u81f4\u6253\u5370\u7684\u6570\u7ec4\u7ed3\u6784\u4e5f\u4e0d\u540c\u3002<\/p>\n<p>\u89e3\u51b3\u8be5\u95ee\u9898\u7684\u6b63\u786e\u65b9\u6cd5\u662f\u4f7f\u7528\u89e3\u6784\u8d4b\u503c\u6765\u4ea4\u6362\u6570\u7ec4\u5143\u7d20\uff0c\u4f8b\u5982\uff1a<\/p>\n<pre>[array[i], array[j]] = [array[j], array[i]];<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u4ee5\u4e0a\u5c31\u662f\u4e2d\u6253\u5370\u6570\u7ec4\u7684\u53d8\u5316\uff1a\u4e3a\u4ec0\u4e48\u4ea4\u6362\u5143\u7d20\u540e\uff0c\u539f\u59cb\u6570\u7ec4\u4e5f\u53d1\u751f\u4e86\u6539\u53d8\uff1f\u7684\u8be6\u7ec6\u5185\u5bb9\uff0c\u66f4\u591a\u8bf7\u5173\u6ce8\u7c73\u4e91\u5176\u5b83\u76f8\u5173\u6587\u7ae0\uff01<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u6253\u5370\u6570\u7ec4\u5f15\u53d1\u7684\u56f0\u60d1 \u5728\u5b66\u4e60\u65f6\uff0c\u5bf9\u4e8e\u6253\u5370\u6570\u7ec4\u7684\u64cd\u4f5c\u4ea7\u751f\u4e86\u4e00\u4e2a\u4ee4\u4eba\u56f0\u60d1\u7684\u73b0\u8c61\u3002\u5728\u5143\u7d20\u4ea4\u6362\u4f4d\u7f6e\u524d\u6253\u5370\u7684\u6570\u7ec4\u7ed3\u6784\u4e0e\u4ea4\u6362\u540e\u6253\u5370\u7684\u6570\u7ec4\u7ed3\u6784\u4e0d\u540c\u3002\u4ee5\u4e0b\u4ee3\u7801\u793a\u4f8b\u6f14\u793a\u4e86\u8be5\u95ee\u9898\uff1a function bubbleSort(array) { for (let i = 0; i &lt; array.length &#8211; 1; i++) { for (let j = i + 1; j &lt; array.length; j++) { if (array[j] &lt; array[i]) { const oldArr = JSON.parse(JSON.stringify(array)); console.log(oldArr); [array[i], array[j]] = [array[j], array[i]]; } } } } var arr = [1, 3, 6, 3, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-26022","post","type-post","status-publish","format-standard","hentry","category-16"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/26022","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/comments?post=26022"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/26022\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=26022"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=26022"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=26022"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}