摘要: 冒泡排序 using System; namespace BubbleSorter { public class BubbleSorter { public void Sort(int [] list) { int i,j,temp; bool done=false; j=1; while((j<list.Length)&&(!done)) { done=true; ... 阅读全文
posted @ 2006-06-21 15:04 Kangaroo 阅读(235) 评论(0) 推荐(0) 编辑