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

Java三种排序:冒泡,选择,插入排序

时间:2017-10-25 18:36:38      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:扫描   private   bubble   []   思想   wap   java   cts   i+1   

三种排序:冒泡,选择,插入排序

        public static void bubbleSort(int[] source){
            // 交换类排序思想: 两两比较待排序的关键字,发现记录相反则交换,直到没有反序的记录。
            for(int i = source.length - 1; i > 0; i--){
                for(int j = 0; j < i; j++){
                    if(source[j] > source[j + 1]){
                        swap(source, j, j+1);
                    }
                }
            }
        }

        
        public static void selectSort(int[] source){
            // 选择类排序思想:首先在未排序的序列中找到最小元素,存放到排序序列的起始位置,
            // 然后再从剩余未排序的元素中找到下一个最小元素,放到已排序序列的末尾。
            for (int i = 0; i < source.length; i++){
                for (int j = i+1; j < source.length; j++){
                    if (source[j] > source[i]){
                        swap(source, i, j);
                    }
                }
            }
            
        }
        // 从第一个元素开始,该元素可以认为已经被元素
        // 取出下一个元素,在已经拍序的元素中从后往前扫描,如果该元素大于新一个,则将该元素移到下一个
        public static void insertSort(int[] source){
            for(int i = 1; i < source.length; i++){
                for(int j = i ; (j > 0) && (source[j] < source[j - 1]); j--){
                    swap(source, j, j-1);
                }
                
            }
        }
        
        private static void swap(int[] source, int x, int y){
            int temp = source[x];
            source[x] = source[y];
            source[y] = temp;
        }
        
        public static void main(String[] args){
            int[] a = {4, 2, 1, 3, 4, 6, 7, 8, 0};
            int i;
            bubbleSort(a);
            for (i = 0;i<a.length;i++){
                System.out.printf("%d ", a[i]);
            }
            

  

Java三种排序:冒泡,选择,插入排序

标签:扫描   private   bubble   []   思想   wap   java   cts   i+1   

原文地址:http://www.cnblogs.com/smuxiaolei/p/7731446.html

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