选择排序

Posted bigdata-stone

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选择排序相关的知识,希望对你有一定的参考价值。

package com.cisco.www.sort;

/**
* 选择排序
* 0到n-1
* 1到n-1
* 2到n-1
*
*
*/
public class SelectSort
public static void selectionSort(int[] arr)
if(arr==null||arr.length<2)
return;

for(int i= 0 ; i<arr.length;i++)
int minIndex = i; //给一个初始值
for(int j = i+1;j<arr.length;j++)
minIndex=arr[j]<arr[minIndex]?j:minIndex; //找到最小的数的下标是什么

swap(arr,i,minIndex);



private static void swap(int[] arr, int i, int j)
int temp =arr[i];
arr[i]=arr[j];
arr[j] =temp;

以上是关于选择排序的主要内容,如果未能解决你的问题,请参考以下文章

选择排序(简单选择排序堆排序的算法思想及代码实现)

❤️数据结构入门❤️(4 - 2)- 选择排序

选择排序之二:简单选择排序

排序算法6--选择排序--简单选择排序

Python | 选择排序之树形选择排序

第二篇,选择排序算法:简单选择排序堆排序