summary refs log blame commit diff stats
path: root/tests/accept/compile/tquicksort.nim
blob: 6706a185ee2ada489f325afee0d2b43a4456a4aa (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                          


                               











                                                            
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)