簡單的冒泡排序,實現數字的排序

 經過下面的代碼,咱們能夠簡單的瞭解一下冒泡排序。數組   1 #include<stdio.h>函數   2 #define SIZE 10   3    4 void sort(int a[])   5 {   6     int i,j,tmp;   7     for(i = 0; i <SIZE-1; i++)   8     {   9         for(j = 0; j <SI
相關文章
相關標籤/搜索