/**
* 选择排序
* @param a
* @date 2016-10-8
* @author shaobn
*/
public static void selectSort(int[] a){
for(int i = 0;i<a.length-1;i++){
int temp = 0;
for(int j = i+1;j<a.length;j++){
if(a[i]>a[j]){
temp = a[i];
a[i] = a[j];
a[j] = temp ;
}
}
}
for(int num:a){
System.out.println(num);
} }
相关文章
- 09-11113.输入10个国家的名字,按由小到大排序
- 09-11【LeetCode】451-根据字符出现频率排序
- 09-11451. 根据字符出现频率排序(每日随记)
- 09-11451. 根据字符出现频率排序
- 09-11LeetCode 451. 根据字符出现频率排序
- 09-11ArcMap修改粘滞移动容差防止要素在选择时无意拖动移动
- 09-11LeetCode 164. Maximum Gap (排序)
- 09-11【CSP模拟赛】益智游戏(最短路&拓扑排序)
- 09-11线性时间的排序算法--桶排序(以leetcode164. Maximum Gap为例讲解)
- 09-11【leetcode 桶排序】Maximum Gap