首页 > 代码库 > 快速排序算法

快速排序算法

近来想学习一下python很算法,用python实现了一下快速排序:

#pythondef quick_sort(array, length):    if length < 2 :        #"array is too short to sort"        return    startValue = http://www.mamicode.com/array[0]"before sort array = %r" % repr(array))quick_sort(array,len(array))print("after sort array = %r" % repr(array))

  

快速排序算法