{"id":24,"date":"2021-04-23T01:04:53","date_gmt":"2021-04-22T17:04:53","guid":{"rendered":"http:\/\/192.168.1.173:8082\/?p=24"},"modified":"2021-04-23T01:04:58","modified_gmt":"2021-04-22T17:04:58","slug":"%e9%80%89%e6%8b%a9%e6%8e%92%e5%ba%8f","status":"publish","type":"post","link":"https:\/\/dmoe.nicolite.cn\/?p=24","title":{"rendered":"\u9009\u62e9\u6392\u5e8f"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>import java.util.Arrays;\n\npublic class SelectSort {\n    \/**\n     * \u9009\u62e9\u6392\u5e8f\uff0c\u9009\u62e9\u4e00\u4e2a\u4f4d\u7f6e\uff0c\u627e\u5230\u8be5\u6392\u5728\u8fd9\u4e2a\u4f4d\u7f6e\u7684\u503c\uff0c\u7136\u540e\u4ea4\u6362\n     *\/\n    public int&#91;] sort(int&#91;] src) {\n        int minIndex;\n        for (int i = 0; i &lt; src.length; i++) {\n            minIndex = i;\n\n            \/\/\u627e\u51fa\u5e94\u8be5\u6392\u5728\u8be5\u4f4d\u7f6e\u7684\u503c\n            for (int j = i + 1; j &lt; src.length; j++) {\n                \/\/\u8fd9\u91cc\u53ef\u4ee5\u63a7\u5236\u5347\u5e8f\u8fd8\u662f\u964d\u5e8f\uff0c&lt;\u5347\u5e8f &gt;\u964d\u5e8f\n                if (src&#91;j] &lt; src&#91;minIndex]) {\n                    minIndex = j;\n                }\n            }\n\n            \/\/\u4ea4\u6362\n            int temp = src&#91;i];\n            src&#91;i] = src&#91;minIndex];\n            src&#91;minIndex] = temp;\n        }\n        return src;\n    }\n\n    public static void main(String&#91;] args) {\n        int&#91;] src = {1, 4, 5, 6, 8, 9, 12, 0, 2};\n        SelectSort selectSort = new SelectSort();\n        int&#91;] sort = selectSort.sort(src);\n        System.out.println(Arrays.toString(sort));\n    }\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u901a\u7528\u6cdb\u578b\uff0c\u9009\u62e9\u6392\u5e8f<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import java.util.Arrays;\n\npublic class SelectSortGeneric {\n    public &lt;T extends Comparable&lt;T&gt;&gt; T&#91;] sort(T&#91;] src) {\n        int minIndex;\n        for (int i = 0; i &lt; src.length; i++) {\n            minIndex = i;\n            for (int j = i + 1; j &lt; src.length; j++) {\n                if (src&#91;j].compareTo(src&#91;minIndex]) &lt; 0) {\n                    minIndex = j;\n                }\n            }\n\n            if (minIndex == i) {\n                continue;\n            }\n\n            T temp = src&#91;i];\n            src&#91;i] = src&#91;minIndex];\n            src&#91;minIndex] = temp;\n        }\n        return src;\n    }\n\n\n    public static void main(String&#91;] args) {\n        Integer&#91;] src = {1, 4, 5, 6, 8, 9, 12, 0, 2};\n        SelectSortGeneric selectSort = new SelectSortGeneric();\n        Integer&#91;] sort = selectSort.sort(src);\n        System.out.println(Arrays.toString(sort));\n    }\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\u901a\u7528\u6cdb\u578b\uff0c\u9009\u62e9\u6392\u5e8f<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-24","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"blocksy_meta":{"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6}},"_links":{"self":[{"href":"https:\/\/dmoe.nicolite.cn\/index.php?rest_route=\/wp\/v2\/posts\/24","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dmoe.nicolite.cn\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dmoe.nicolite.cn\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dmoe.nicolite.cn\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dmoe.nicolite.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=24"}],"version-history":[{"count":1,"href":"https:\/\/dmoe.nicolite.cn\/index.php?rest_route=\/wp\/v2\/posts\/24\/revisions"}],"predecessor-version":[{"id":25,"href":"https:\/\/dmoe.nicolite.cn\/index.php?rest_route=\/wp\/v2\/posts\/24\/revisions\/25"}],"wp:attachment":[{"href":"https:\/\/dmoe.nicolite.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=24"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dmoe.nicolite.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=24"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dmoe.nicolite.cn\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=24"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}