06 2019 档案

摘要:1 function bubbleSort(t) 2 local index = 0 3 for i=1, #t - 1 do 4 for j = 1, #t - i do 5 if t[j] > t[j + 1] then 6 t[j],t[j + 1] = t[j+1], t[j] 7 end 阅读全文
posted @ 2019-06-06 16:40 李小样bro 阅读(589) 评论(0) 推荐(0)