张银的博客


Eat to live, but do not live to eat.

导航

随笔分类 -  【10】数据结构

摘要:using System;using System.Collections.Generic;using System.Text;namespace temp{ public class QuickSort { /// <summary> /// 排序 /// </summary> /// <param name="numbers">待排序数组</param> /// <param name="left">数组第一个元素索引Index</param> /// <param na. 阅读全文

posted @ 2012-04-08 23:50 张银 阅读(635) 评论(0) 推荐(0) 编辑

摘要:排序法 平均时间 最差情形 稳定度 额外空间 备注 冒泡 O(n2) O(n2) 稳定 O(1) n小时较好 交换 O(n2) O(n2) 不稳定 O(1) n小时较好 选择 O(n2) O(n2) 不稳定 O(1) n小时较好 插入 O(n2) ... 阅读全文

posted @ 2009-04-16 15:07 张银 阅读(3159) 评论(0) 推荐(2) 编辑