GIS之家

愿大家在GIS的海洋里自由遨游

导航

2009年1月3日

摘要: 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)&&(!done)) { done=true; f... 阅读全文

posted @ 2009-01-03 18:02 雨衣blog 阅读(234) 评论(0) 推荐(0) 编辑