摘要:
【导读】本文介绍了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-01-09 08:56
房客
阅读(717)
评论(0)
推荐(0)