冒泡排序-用指針方式實現

#include<stdio.h> void bubble_sort(int *a,int n) { int i,j; for(i = 0;i<n;i++) { for(j = i;j < n;j++) { if(*(a+i)>*(a+j)) { int temp; temp = *(a+i); *(a+i) = *(a+j); *(a+j
相關文章
相關標籤/搜索