{"id":346,"date":"2023-01-11T22:42:34","date_gmt":"2023-01-11T14:42:34","guid":{"rendered":"https:\/\/9iwd.top\/?p=346"},"modified":"2023-01-11T22:42:34","modified_gmt":"2023-01-11T14:42:34","slug":"08-7-c%e6%8c%87%e9%92%88%e9%85%8d%e5%90%88%e6%95%b0%e7%bb%84%e5%92%8c%e5%87%bd%e6%95%b0","status":"publish","type":"post","link":"http:\/\/9iwd.top\/?p=346","title":{"rendered":"08.7 C++\u6307\u9488\u914d\u5408\u6570\u7ec4\u548c\u51fd\u6570"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>#include &lt;iostream>\t \/\/ \u8f93\u51fa\u6d41\u5e93\r\nusing namespace std; \/\/ \u4f7f\u7528\u6807\u51c6\u547d\u540d\u7a7a\u95f4\r\n\r\n\/\/ \u8bfe\u7a0b\uff1a08.7 \u6307\u9488\u6570\u7ec4\u548c\u51fd\u6570\r\n\r\n\/\/\u5192\u6ce1\u6392\u5e8f\u51fd\u6570\r\n\/\/@arr \u6570\u7ec4\u6307\u9488\r\n\/\/@len \u6570\u7ec4\u957f\u5ea6\r\nvoid bubbleSort(int* arr, int len)\r\n{\r\n\tfor (int i = 0; i &lt; len-1; i++)\r\n\t{\r\n\t\tfor (int j = 0; j &lt; len-i-1; j++)\r\n\t\t{\r\n\t\t\tif (arr&#91;j] > arr&#91;j + 1])\r\n\t\t\t{\r\n\t\t\t\tint temp = arr&#91;j];\r\n\t\t\t\tarr&#91;j] = arr&#91;j + 1];\r\n\t\t\t\tarr&#91;j + 1] = temp;\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}\r\n\r\nvoid printf(int* arr, int len)\r\n{\r\n\tfor (int i = 0; i &lt; len; i++)\r\n\t{\r\n\t\tcout &lt;&lt; \"arr&#91;\" &lt;&lt; i &lt;&lt; \"]\" &lt;&lt; arr&#91;i] &lt;&lt; endl;\r\n\t}\r\n}\r\n\r\nint main()\r\n{\r\n\t\/\/1\u3001\u521b\u5efa\u6570\u7ec4\r\n\tint arr&#91;10] = { 4,3,6,9,1,2,10,8,7,5 };\r\n\t\/\/\u53d6\u6570\u7ec4\u957f\u5ea6\r\n\tint len = sizeof(arr) \/ sizeof(arr&#91;0]);\r\n\r\n\t\/\/2\u3001\u6307\u9488\u51fd\u6570\u6392\u5e8f\r\n\tbubbleSort(arr, len);\r\n\r\n\t\/\/3\u3001\u6253\u5370\u6570\u7ec4\r\n\tprintf(arr, len);\r\n\r\n\tsystem(\"pause\"); \/\/ \u63a7\u5236\u53f0\u6682\u505c\uff0c\u7b49\u5f85\u4e0b\u4e00\u6b65\u64cd\u4f5c\r\n\treturn 0;\t\t \/\/ \u7ed3\u675f\u8fd4\u56de\u503c\uff1a0\r\n}\r\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[],"_links":{"self":[{"href":"http:\/\/9iwd.top\/index.php?rest_route=\/wp\/v2\/posts\/346"}],"collection":[{"href":"http:\/\/9iwd.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/9iwd.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/9iwd.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/9iwd.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=346"}],"version-history":[{"count":0,"href":"http:\/\/9iwd.top\/index.php?rest_route=\/wp\/v2\/posts\/346\/revisions"}],"wp:attachment":[{"href":"http:\/\/9iwd.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=346"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/9iwd.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=346"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/9iwd.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=346"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}