摘要: 插入排序,由第二位开始,一个个往前适当的位置(比左边大,比右边小)插入using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication7{ class Class5 { //插入排序,由第二位开始,一个个往前适当的位置(比左边大,比右边小)插入 static void Main(string[] args) { int[] ary = { 32, 432, 5, 3... 阅读全文
posted @ 2012-11-29 23:25 wahgon 阅读(199) 评论(0) 推荐(0) 编辑