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

Posted 懵懂的菜鸟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java三种排序:冒泡,选择,插入排序相关的知识,希望对你有一定的参考价值。

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

        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三种排序:冒泡,选择,插入排序的主要内容,如果未能解决你的问题,请参考以下文章

java面向对象的冒泡排序,选择排序和插入排序的比较

排序算法之冒泡选择插入排序(Java)

排序算法之冒泡选择插入排序(Java)

java中数组的三种排序算法

PHP--冒泡选择插入排序法

排序算法(01)— 三种简单排序(冒泡插入选择)