【算法】用lua解决快速排序问题 如下local list = { 3,1,5,18,34,32,0, }function printList() local str = "" for i = 1,#list do str = str .. list[i] .. " " end print(str)endfunction qsort(low,high) if low >= high then r 算法 2024-07-24 38 点赞 0 评论 57 浏览