摘要:
冒泡排序 bubble sorting int t; int[] a ={21,56,64,94,97,123}; for(int j =a.Length-1;j>0;j--) { for(int i =0;ia[i+1]) { t =a[i]; a[i]=a[i+1]; a[i+1]=t; } } } ... 阅读全文
posted @ 2009-04-22 15:49 GeorgeHuang 阅读(337) 评论(0) 推荐(0)
我会一直努力,直到我站到顶峰为止。
posted @ 2009-04-22 15:49 GeorgeHuang 阅读(337) 评论(0) 推荐(0)