码迷,mamicode.com
首页 > 编程语言 > 详细

java选择排序

时间:2015-07-28 17:40:04      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

 1 public static void main(String[] args){
 2         int a[] = {34, 8, 64, 51, 32, 21};
 3         selectSort(a);
 4         for (int i = 0; i < a.length; i++) {
 5             System.out.print(a[i] + " ");
 6         }
 7     }
 8     
 9     public static void  selectSort(int[] a) {
10         for (int i = 0; i < a.length; i++) {
11             int min=i;
12             for (int j = i+1; j<a.length; j++) {
13                 if (a[min] > a[j]) {
14                     min = j;
15                 }
16             }
17             if (min != i) {
18                 a[min] = a[min] ^ a[i];
19                 a[i] = a[min] ^ a[i];
20                 a[min] = a[min] ^ a[i];
21             }
22         }
23     }

 

java选择排序

标签:

原文地址:http://www.cnblogs.com/daemonspirit/p/4682888.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!