-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQuick.py
56 lines (42 loc) · 1.25 KB
/
Quick.py
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
#! usr/bin/pyhton
# -*- coding: utf-8 -*-
"""
Qiuck Sort
Quicksort is a divide-and-conquer method for sorting. It works by partitioning
an array into two parts, then sorting the parts independently.
Average performance O(nlogn)
快速排序
快速排序是一种分治的排序算法。它将一个数组分成两个子数组,将两部分独立地排序。
平均时间复杂度 O(nlogn)
"""
def quicksort(array):
def sort(lo, hi):
if (hi <= lo): return
j = partition(lo, hi)
sort(lo, j-1)
sort(j+1, hi)
def partition(lo, hi):
i = lo + 1
j = hi
v = array[lo] # Base number
while True:
while array[i] < v:
if i == hi: break
i += 1
while array[j] > v:
if j == lo: break
j -= 1
if i >= j: break
array[i], array[j] = array[j], array[i]
array[lo], array[j] = array[j], array[lo]
return j
sort(0, len(array)-1)
return array
if __name__ == "__main__":
import sys
sys.path.append('../')
from generator import *
data = getRandomNumbers(0, 1000, 15)
print('Quick Sort')
print('> input: %s' % data)
print('> output: %s' % quicksort(data))