摘要: 废话小说,看代码:import java.util.Date;public class BubbleSort { // 冒泡排序正常做法 static void bubbleSort1(int a[]) { int temp; for (int i = 0; i < a.length; i++) for (int j = 1; j < a.length - i; j++) if (a[j - 1] > a[j]) { temp = a[j]; ... 阅读全文
posted @ 2013-06-05 15:09 qgweizhan 阅读(574) 评论(0) 推荐(0)