选择排序 - 简单选择排序
选择排序:
基本原理:比如在一个长度为N的无序数组中,在第一趟遍历N个数据,找出其中最小(大)的数值与第一个元素交换,
第二趟遍历剩下的N-1个数据,找出其中最小(大)的数值与第二个元素交换......
第N-1趟遍历剩下的2个数据,找出其中最小(大)的数值与第N-1个元素交换,至此选择排序完成
稳定性:不稳定
时间复杂度:O(n^2)
代码演示
public class SimpleSelectSort { public static void main(String[] args) { int[] array = { -2,112,2,4,10,12,-1,65,11,94,1}; int temp = 0; int minIndex = 0; for (int i = 0; i < array.length; i++) { minIndex = i; for (int j = i + 1; j < array.length; j++) { if (array[j] < array[minIndex]) { minIndex = j; } } if (minIndex != i) { temp = array[minIndex]; array[minIndex] = array[i]; array[i] = temp; } } for (int i : array) { System.out.print(i + " "); } } }
posted on 2017-08-07 17:49 一只小蜗牛12138 阅读(124) 评论(0) 编辑 收藏 举报