Java排序算法之选择排序

2021-07-01 08:05

阅读:742

标签:temp   col   void   简单   单选   排序   stat   ++   简单选择   

package com.example.demo.dataStructure.sort;

// 简单选择排序
public class SelectSort {
    public static void selectSort(int[] arg) {
        for (int i= 0;i) {
            int k = i;
            for (int j=k+1;j) {
                if (arg[j]  arg[k]) {
                    k = j;
                }
            }
            if (i != k) {
                int temp = arg[i];
                arg[i] = arg[k];
                arg[k] = temp;
            }
        }
    }
    
    public static void main(String[] args) {
        int[] arg = {9,8,7,6,5,4,3,1,2};
        selectSort(arg);
        for (int i = 0;i) {
            System.out.print(arg[i]);
        }
    }
}

 

Java排序算法之选择排序

标签:temp   col   void   简单   单选   排序   stat   ++   简单选择   

原文地址:https://www.cnblogs.com/xiaobaobei/p/9638166.html

上一篇:WC 代码统计 java

下一篇:K-means聚类算法


评论


亲,登录后才可以留言!