快速排序

2018-07-27 21:04 更新
  1. 基本思想: 選擇一個(gè)基準(zhǔn)元素,通常選擇第一個(gè)元素或者最后一個(gè)元素,通過一趟掃描,將待排序列分成兩部分,一部分比基準(zhǔn)元素小,一部分大于等于基準(zhǔn)元素,此時(shí)基準(zhǔn)元素在其排好序后的正確位置,然后再用同樣的方法遞歸地排序劃分的兩部分。
  2. 代碼實(shí)現(xiàn):

    /**
         * 打印數(shù)組內(nèi)容
         * 
         * @param a
         */
        public static void saymsg(int[] src) {
            for (int i = 0; i < src.length; i++) {
                System.out.print(src[i]);
                System.out.print(",");
            }
            System.out.println();
        }
    
    
    
    
        public static int getMiddle(int[] list, int low, int high) {
            int tmp = list[low]; // 數(shù)組的第一個(gè)作為中軸
            while (low < high) {
                while (low < high && list[high] >= tmp) {
                    high--;
                }
                list[low] = list[high]; // 比中軸小的記錄移到低端
                saymsg(list);
                while (low < high && list[low] <= tmp) {
                    low++;
                }
                list[high] = list[low]; // 比中軸大的記錄移到高端
                saymsg(list);
            }
            list[low] = tmp; // 中軸記錄到尾
            saymsg(list);
            return low; // 返回中軸的位置
        }
    
    
    
    
        public static void quickSort(int[] list, int low, int high) {
            if (low < high) {
                int middle = getMiddle(list, low, high); // 將list數(shù)組進(jìn)行一分為二
                quickSort(list, low, middle - 1); // 對低字表進(jìn)行遞歸排序
                quickSort(list, middle + 1, high); // 對高字表進(jìn)行遞歸排序
            }
        }
    
    
    
    
        public static void main(String[] args) {
            int[] src = { 49, 38, 65, 97, 76, 13, 27, 49, 78, 34, 12, 64, 5, 4, 62, 99, 98, 54, 56, 17, 18, 23, 34, 15, 35,
                    25, 53, 51 };
            System.out.println("原始數(shù)組排序:");
            saymsg(src);
            if (src.length > 0) { 
                quickSort(src, 0, src.length - 1);
            }
        }
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號