summary refs log tree commit diff stats
path: root/tests/tquicksort.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tquicksort.nim')
-rwxr-xr-xtests/tquicksort.nim24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/tquicksort.nim b/tests/tquicksort.nim
new file mode 100755
index 000000000..421564ecd
--- /dev/null
+++ b/tests/tquicksort.nim
@@ -0,0 +1,24 @@
+proc QuickSort(list: seq[int]): seq[int] =
+    if len(list) == 0:
+        return @[]
+    var pivot = list[0]
+    var left: seq[int] = @[]
+    var right: seq[int] = @[]
+    for i in low(list)..high(list):
+        if list[i] < pivot:
+            left.add(list[i])
+        elif list[i] > pivot:
+            right.add(list[i])
+    result = QuickSort(left) & pivot & QuickSort(right)
+    
+proc echoSeq(a: seq[int]) =
+    for i in low(a)..high(a):
+        echo(a[i])
+
+var
+    list: seq[int]
+        
+list = QuickSort(@[89,23,15,23,56,123,356,12,7,1,6,2,9,4,3])
+echoSeq(list)
+
+