排序算法-冒泡算法
摘要:
代码参考自:http://blog.csdn.net/morewindows/article/details/6657829void Swap(int n, int m) { int temp; temp = m; m = n; n = temp; } void BubbleSort1(int[] s, int n) { int i, j; for (i = 0; i s[j]) ... 阅读全文
posted @ 2014-03-31 22:27 清水伊人 阅读(101) 评论(0) 推荐(0)
浙公网安备 33010602011771号