冒泡排序
摘要:1 /**//// 2 /// 冒泡排序法 3 /// 4 /// 要排序的顺序表 5 public void BubbleSort(SeqList sqList) 6 { 7 int temp = 0; 8 for (int i = 0; i i; --j)11...
阅读全文
posted @ 2007-04-23 20:11
web程序设计...
posted @ 2007-04-23 20:11