aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/quicksort.py
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-05-06 06:14:54 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-05-06 06:14:54 +0300
commitd6de118675a192ce6e01574eb4eb2541db7aca7a (patch)
treef5899b5089029fc5637435482cce5e279fa5e2ce /quicksort.py
downloadsorting-algorithms-d6de118675a192ce6e01574eb4eb2541db7aca7a.tar.gz
sorting-algorithms-d6de118675a192ce6e01574eb4eb2541db7aca7a.zip
initial commit
Diffstat (limited to 'quicksort.py')
-rw-r--r--quicksort.py65
1 files changed, 65 insertions, 0 deletions
diff --git a/quicksort.py b/quicksort.py
new file mode 100644
index 0000000..b8ecc18
--- /dev/null
+++ b/quicksort.py
@@ -0,0 +1,65 @@
+# Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com>
+# This file is licensed under the terms of the MIT License.
+# See LICENSE.txt for details.
+
+from random import randrange
+
+def _partition(xs, beg, end, select_pivot):
+ pivot = select_pivot(xs, beg, end)
+ xs[pivot], xs[end] = xs[end], xs[pivot]
+ for i in range(beg, end):
+ if xs[i] <= xs[end]:
+ xs[i], xs[beg] = xs[beg], xs[i]
+ beg += 1
+ xs[beg], xs[end] = xs[end], xs[beg]
+ return beg
+
+def _quicksort(xs, beg, end, select_pivot):
+ if beg < end:
+ pivot = _partition(xs, beg, end, select_pivot)
+ _quicksort(xs, beg, pivot - 1, select_pivot)
+ _quicksort(xs, pivot + 1, end, select_pivot)
+
+def _select_first(xs, beg, end):
+ return beg
+
+def _select_second(xs, beg, end):
+ return beg + 1
+
+def _select_middle(xs, beg, end):
+ return (beg + end) // 2
+
+def _select_last(xs, beg, end):
+ return end
+
+def _select_random(xs, beg, end):
+ return randrange(beg, end + 1)
+
+def quicksort_first(xs):
+ _quicksort(xs, 0, len(xs) - 1, _select_first)
+ return xs
+
+def quicksort_second(xs):
+ _quicksort(xs, 0, len(xs) - 1, _select_second)
+ return xs
+
+def quicksort_middle(xs):
+ _quicksort(xs, 0, len(xs) - 1, _select_middle)
+ return xs
+
+def quicksort_last(xs):
+ _quicksort(xs, 0, len(xs) - 1, _select_last)
+ return xs
+
+def quicksort_random(xs):
+ _quicksort(xs, 0, len(xs) - 1, _select_random)
+ return xs
+
+if __name__ == '__main__':
+ import sys
+ xs = list(map(int, sys.argv[1:]))
+ print(quicksort_first(list(xs)))
+ print(quicksort_second(list(xs)))
+ print(quicksort_middle(list(xs)))
+ print(quicksort_last(list(xs)))
+ print(quicksort_random(list(xs)))