Exemplo n.º 1
0
def main():
    tList = randomList(100)
    heap_sort(tList)
    print tList
Exemplo n.º 2
0
def main():
    tList = randomList(100)
    merge_sort(tList)
    print tList
Exemplo n.º 3
0
def main():
    list_ = randomList(100)
    print order_select(list_, 34)
Exemplo n.º 4
0
def main():
    tList = randomList(100)
    quick_sort(tList)
    print tList