数据结构之排序--选择排序
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace SelectionSort{ class SelectSort { public SelectSort(){} public int []arr=new int[1000]; public void Sort(int []a) { int len=a.Length; for (int i=0; ... 阅读全文
posted @ 2012-03-27 19:07 lijizhong 阅读(128) 评论(0) 推荐(0) 编辑