摘要: C语言版 1 void bubbleSort(int * array,int length) 2 { 3 int i,j,temp; 4 for(i = 0;i < length-1;i++) 5 { 6 for(j = 0;j < length-i-1;j++) 7 { 8 if(array[j] 阅读全文
posted @ 2020-05-19 18:21 Mcxfate 阅读(96) 评论(0) 推荐(0) 编辑