摘要:
本文介绍了C#的四种排序算法:冒泡排序、选择排序、插入排序和希尔排序 冒泡排序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)&&... 阅读全文
posted @ 2007-04-28 23:01 Bobby 阅读(384) 评论(0) 推荐(0) 编辑