{"id":33,"date":"2024-11-15T01:52:27","date_gmt":"2024-11-14T17:52:27","guid":{"rendered":"https:\/\/ceshiy.icu\/?p=33"},"modified":"2024-11-15T01:55:38","modified_gmt":"2024-11-14T17:55:38","slug":"%e5%bf%ab%e9%80%9f%e6%8e%92%e5%ba%8f","status":"publish","type":"post","link":"https:\/\/blog.ceshiy.fun\/index.php\/2024\/11\/15\/%e5%bf%ab%e9%80%9f%e6%8e%92%e5%ba%8f\/","title":{"rendered":"\u5feb\u901f\u6392\u5e8f"},"content":{"rendered":"<pre class=\"wp-block-code\"><code>#include &lt;bits\/stdc++.h&gt;\nusing namespace std;\n\nint arr[] = {1,3,2,4,6,5};\n\nvoid qsort(int left, int right){\n    if(left &gt;= right)\n        return;\n    int big = -1;\n    for(int i = left; i &lt; right; i++){\n        if(arr[i] &lt; arr[right]){\n            if(big != -1){\n                swap(arr[i], arr[big]);\n                big++;\n            }\n        }\n        else{\n            if(big == -1)\n                big = i;\n        }\n    }\n    if(big == -1)\n        big = right;\n    swap(arr[big], arr[right]);\n    qsort(left, big-1);\n    qsort(big+1, right);\n}\n\nint main(){\n    qsort(0, 5);\n    for(int i = 0; i &lt; 6; i++)\n        cout &lt;&lt; arr[i] &lt;&lt; ' ';\n\n    return 0;\n}<\/code><\/pre>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[],"class_list":["post-33","post","type-post","status-publish","format-standard","hentry","category-paixusuanfa"],"_links":{"self":[{"href":"https:\/\/blog.ceshiy.fun\/index.php\/wp-json\/wp\/v2\/posts\/33","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.ceshiy.fun\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.ceshiy.fun\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.ceshiy.fun\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.ceshiy.fun\/index.php\/wp-json\/wp\/v2\/comments?post=33"}],"version-history":[{"count":1,"href":"https:\/\/blog.ceshiy.fun\/index.php\/wp-json\/wp\/v2\/posts\/33\/revisions"}],"predecessor-version":[{"id":34,"href":"https:\/\/blog.ceshiy.fun\/index.php\/wp-json\/wp\/v2\/posts\/33\/revisions\/34"}],"wp:attachment":[{"href":"https:\/\/blog.ceshiy.fun\/index.php\/wp-json\/wp\/v2\/media?parent=33"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.ceshiy.fun\/index.php\/wp-json\/wp\/v2\/categories?post=33"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.ceshiy.fun\/index.php\/wp-json\/wp\/v2\/tags?post=33"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}