摘要: 对各种排序算法的实现1.冒泡排序: 1 #include "stdio.h" 2 #define N 100005 3 4 void Swap(int *x,int *y){ int k=*x; *x=*y; *y=k; } 5 6 void Bubble_sort(int st,int en,... 阅读全文
posted @ 2014-06-05 17:59 ruo_yu 阅读(246) 评论(0) 推荐(0)