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

选择排序

时间:2017-11-12 14:13:54      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:new   数组   eth   java   gen   auto   temp   log   sel   

找到数组中的最小(最大)元素,将它和数组的第一个元素比较后交换,在剩下的元素中再找最小(最大)的元素,将它和第二个元素比较交换,以此类推。

这种排序在剩余的元素里不断选择最小(最大)者。

package sort20171101;

import java.util.*;

public class Selection {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        
        int []a = new int[20];
        int n;
        Scanner in = new Scanner(System.in);
        n = in.nextInt();
        for(int i = 0; i < n; i++) {
            a[i] = in.nextInt();
        }
        
        //选择排序
        
        for(int i = 0; i < n; i++) {
            int min = i;
            for(int j = i; j < n; j++) {
                if(a[j] < a[min]) {
                    min = j;
                }
            }
            int temp;
            temp = a[i];
            a[i] = a[min];
            a[min] = temp;
        }
        
        for(int i = 0; i < n; i++) {
            System.out.println(a[i]);
        }

    }

}

 

选择排序

标签:new   数组   eth   java   gen   auto   temp   log   sel   

原文地址:http://www.cnblogs.com/rainbowsweety/p/7821469.html

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