Sorting algo runtime, lua

后端 未结 0 1573
旧巷少年郎
旧巷少年郎 2020-12-07 20:53

I have this sorting algorithm - it is a little basic compared to a bubble sort but the code is :

for i=1,#t do
    for j=i+1,#t do
        if t[i]>t[j] the         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题