交互设计算法基础 - Quick Sort

Posted 松鼠之家

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了交互设计算法基础 - Quick Sort相关的知识,希望对你有一定的参考价值。

 1 int pivotIndex, pivot, swapIndex;
 2 
 3 void swap(int[] arr, int x, int y) {
 4   int temp = arr[x];
 5   arr[x] = arr[y];
 6   arr[y] = temp;
 7 }
 8 
 9 void quickSort(int[] arr, int start, int end) {
10   if (end <= start) return;
11 
12   pivotIndex = (start + end)/2;
13   pivot = arr[pivotIndex];
14   swap(arr, pivotIndex, end);
15   swapIndex = start;
16   for (int i = start; i < end; i++) {
17     if (arr[i] <= pivot) {
18       swap(arr, i, swapIndex);
19       ++swapIndex;
20     }
21   }
22   swap(arr, swapIndex, end);
23 
24   quickSort(arr, start, swapIndex-1);
25   quickSort(arr, swapIndex+1, end);
26 } 
27 
28 void draw() {
29   noLoop();
30   int[] arr = {10, 5, 2, 3};
31   quickSort(arr, 0, arr.length-1);
32   println(arr);
33 }

快速排序,说白了就是快啦,不过有两种实现方式,一种普通,一种In-place,后面的比前面的占用较少空间。

快排用分治法解决。

最佳时间复杂度:O(nlog n)

平均时间复杂度:O(nlog n)

最差时间复杂度:O(n2)

空间复杂度:一般版本O(n),In-place O(log n)

以上是关于交互设计算法基础 - Quick Sort的主要内容,如果未能解决你的问题,请参考以下文章

算法基础课第一章基础算法

算法 quick sort

算法之排序算法 -- 快速排序 Quick sort

Quick Sort

排序算法-快速排序(Quick Sort)

快速排序算法回顾 --冒泡排序Bubble Sort和快速排序Quick Sort(Python实现)