排序小结(C语言)
Buble_sort void bublesort(int *a,int n) { int i,j,k,t; for(i = 0;i<n-1;i++) { for(j = i+1;j<n;j++) ...
Free Open Share