冒泡排序+二分法查找
摘要:
1 #include 2 3 void bubble(int *arr, int length) 4 { 5 int i, j, tmp; 6 for(i=0;iarr[j+1])11 {12 tmp = arr[j];1... 阅读全文
posted @ 2014-08-13 15:51 阳台 阅读(278) 评论(0) 推荐(0)
posted @ 2014-08-13 15:51 阳台 阅读(278) 评论(0) 推荐(0)