摘要: 一:冒泡排序 using System; namespace BubbleSorter { public class BubbleSorter { public void Sort(int[] list) { int i,j,temp; bool done=false; j=1; while((jlist[i+1]) { done=fa... 阅读全文
posted @ 2007-09-12 12:01 sunfishlu 阅读(249) 评论(0) 推荐(0) 编辑