Lua的排序算法——快速排序
a = {1,3,5,2,6,8,10,3,6,20}--快速排序(以数组最左边的值为基准,比它小的放左边,比它大的放右边,然后再对左右两边的数组进行同样的操作,直到细分排列完成)local function KuaiSuPaiXu(arr, startIndex, endIndex) if startIndex >= endIndex then return end l...