package com.yuyong.alorithms;
public class SelectionSort {
/**
* @param args
*/
public void selectionSort(int arr[], int n) {
for (int i = 0; i < n; i++) {
// 寻找[i,n)区间范围内的最小值
int minIndex = i;
int temp;
for (int j = i + 1; j < n; j++) {
if (arr[j] < arr[minIndex]) {
minIndex = j;
}
}
temp = arr[minIndex];
arr[minIndex] = arr[i];
arr[i] = temp;
}
}
public static void main(String[] args) {
int[] a = { 10, 8, 9, 6, 7, 5, 4, 3, 1, 2 };
SelectionSort ss = new SelectionSort();
ss.selectionSort(a, 10);
for (int i = 0; i < 10; i++) {
System.out.print(a[i] + " ");
}
}
}
点击查看更多内容
2人点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦