quick sort(快速排序)

转载自:http://java2novice.com/java-sorting-algorithms/quick-sort/


Quicksort or partition-exchange sort, is a fast sorting algorithm, which is using divide and conquer algorithm. Quicksort first divides a large list into two smaller sub-lists: the low elements and the high elements. Quicksort can then recursively sort the sub-lists.

Steps to implement Quick sort:

1) Choose an element, called pivot, from the list. Generally pivot can be the middle index element.
2) Reorder the list so that all elements with values less than the pivot come before the pivot, while all elements with values greater than the pivot come after it (equal values can go either way). After this partitioning, the pivot is in its final position. This is called the partition operation.
3) Recursively apply the above steps to the sub-list of elements with smaller values and separately the sub-list of elements with greater values.

Quick Sort


The complexity of quick sort in the average case is Θ(n log(n)) and in the worst case is Θ(n2).


?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.java2novice.sorting;
 
public class MyQuickSort {
     
     private int array[];
     private int length;
 
     public void sort( int [] inputArr) {
         
         if (inputArr == null || inputArr.length == 0 ) {
             return ;
         }
         this .array = inputArr;
         length = inputArr.length;
         quickSort( 0 , length - 1 );
     }
 
     private void quickSort( int lowerIndex, int higherIndex) {
         
         int i = lowerIndex;
         int j = higherIndex;
         // calculate pivot number, I am taking pivot as middle index number
         int pivot = array[lowerIndex+(higherIndex-lowerIndex)/ 2 ];
         // Divide into two arrays
         while (i <= j) {
             /**
              * In each iteration, we will identify a number from left side which
              * is greater then the pivot value, and also we will identify a number
              * from right side which is less then the pivot value. Once the search
              * is done, then we exchange both numbers.
              */
             while (array[i] < pivot) {
                 i++;
             }
             while (array[j] > pivot) {
                 j--;
             }
             if (i <= j) {
                 exchangeNumbers(i, j);
                 //move index to next position on both sides
                 i++;
                 j--;
             }
         }
         // call quickSort() method recursively
         if (lowerIndex < j)
             quickSort(lowerIndex, j);
         if (i < higherIndex)
             quickSort(i, higherIndex);
     }
 
     private void exchangeNumbers( int i, int j) {
         int temp = array[i];
         array[i] = array[j];
         array[j] = temp;
     }
     
     public static void main(String a[]){
         
         MyQuickSort sorter = new MyQuickSort();
         int [] input = { 24 , 2 , 45 , 20 , 56 , 75 , 2 , 56 , 99 , 53 , 12 };
         sorter.sort(input);
         for ( int i:input){
             System.out.print(i);
             System.out.print( " " );
         }
     }
}

Output:
2 2 12 20 24 45 53 56 56 75 99 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值