搜索资源列表

  1. sort

    0下载:
  2. 数据结构课程设计内部排序的比较 一共有十种排序方法
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:3898
    • 提供者:Lee
  1. someag

    0下载:
  2. 各种内部排序法演示,程序对输入的无序序列分别用简单插入,折半插入,一趟快速排序,简单选择排序,堆排序等算法进行排序输出。-internal sequencing demonstrated that the procedures for the importation of disorderly sequences were inserted with a simple, half-inserted, the trip rapid seq
  3. 所属分类:其它资源

    • 发布日期:2008-10-13
    • 文件大小:2839
    • 提供者:衣明玉
  1. 内部排序算法比较

    0下载:
  2. 所属分类:数值算法/人工智能

    • 发布日期:2009-09-19
    • 文件大小:495955
    • 提供者:red_eyed_hare
  1. 插入算法完整实现

    0下载:
  2. 该程序关键在于Shell sort的实现: 缩小增量排序法 取整数d1,将所有距离为d1的倍数的元素为1组,在各组内排序。(每组内部插入排序) 取d2<d1,同样排序 依次下去,直到di=1-Sort algrithms of insertion method.
  3. 所属分类:Windows编程

    • 发布日期:2024-05-21
    • 文件大小:15360
    • 提供者:要命
  1. key_sort_system

    0下载:
  2. 多关键字的排序是有一定的实用范围。例如:在进行高考分数处理时,除了对总分进行排序外,不同的专业对单科分数的要求不同,因此尚需在总分相同的情况下,按用户提出的单科分数的次序要求排出考生录取的次序。(1)假如代排序的记录数不超10000,表中记录的关键字数不超过5,各个关键字的范围均为0至100。按用户给定的排序的关键字的优先关系,输出排序的结果。(2)约定按LSD方法进行多关键字的排序。在对各个关键字进行排序时采用两种策略:其一是利用稳定
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-21
    • 文件大小:3104768
    • 提供者:walew
  1. neibupaixu

    0下载:
  2. 这个程序包括了各种常用内部排序算法在平均排序所需时间上的比较-this procedure include a wide range of internal sorting algorithm commonly used in the average time required for ordering the comparative
  3. 所属分类:其他小程序

    • 发布日期:2024-05-21
    • 文件大小:2048
    • 提供者:森森
  1. nbpx

    0下载:
  2. 内部排序实现冒泡算法,仅供参考,请认真阅读-internal Bubble Ordering Algorithm for reference purposes only, please read carefully
  3. 所属分类:书籍源码

    • 发布日期:2024-05-21
    • 文件大小:2048
    • 提供者:张小凡
  1. nbpxbj

    0下载:
  2. 内部排序的算法比较,界面简单,容易理解,希望适合大家-internal scheduling algorithms, simple interface, easy to understand, we hope for
  3. 所属分类:书籍源码

    • 发布日期:2024-05-21
    • 文件大小:5120
    • 提供者:张小凡
  1. sort_compare

    0下载:
  2. 对以下5种常用的内部排序算法进行比较:起泡排序、直接插入排序、简单选择排序、快速排序、希尔排序-The following five kinds of commonly used internal sorting algorithm to compare: foaming sort of direct insertion sort, selection sort simple, fast sorting, sorting Hill
  3. 所属分类:软件工程

    • 发布日期:2024-05-21
    • 文件大小:54272
    • 提供者:清影摇风
  1. 200611373551757_600it

    0下载:
  2. 哈夫曼编码原程序 * huffman_e 在huffman_d的基础上,将索引数组放在tree的内部。为编码方便,将元素权值放在tree[num..2*num-1]处。将tree[0..num-1]作为索引数组。排序改为从大到小。对索引数组排序后,每次从最后选出2个最小值,相加后的结点权值放在索引数组最后,结点索引放在索引数组中倒数第2个位置,然后索引数组大小减1,并将最后一个索引值插入到前面的有序表中,保证索引数组仍然有序。
  3. 所属分类:Windows编程

    • 发布日期:2024-05-21
    • 文件大小:37888
    • 提供者:envy
  1. SortSimple

    0下载:
  2. 内部排序法,一、交换式排序 1)冒泡法 方法:将相邻的两个数据加以比较,若左边的值大于右边的值,则将两值相互交换 若左边的值小于等于右边的值,则此两个值的位置不变。右边的值继续和下一个值做比较,重复此动作,-Internal sorting method, one or switching to sort 1) Bubble Act Methods: adjacent to compare the two data, if the le
  3. 所属分类:C#编程

    • 发布日期:2024-05-21
    • 文件大小:2048
    • 提供者:陈风
  1. MultiSort

    0下载:
  2. 分别用LSD-归并(可选其他内部排序方法)、LSD-分配收集、MSD-归并(可选其他排序方法),按照用户所给出的关键字优先次序,对多关键字的待排序序列进行排序。内含用户手册-Were treated with LSD-merge (optional other internal sorting method), LSD-distribution of the collection, MSD-merge (optional other s
  3. 所属分类:软件工程

    • 发布日期:2024-05-21
    • 文件大小:1965056
    • 提供者:王妙一
  1. paixu

    0下载:
  2. (1)对以下6种常用的内部排序算法进行比较:起泡排序、直接插入排序、简单选择排序、快速排序、希尔排序、堆排序。 (2)待排序表的表长不小于100;其中的数据要用伪随机数产生程序产生;至少要用5组不同的输入数据作比较;比较的指标为有关键字参加的比较次数和关键字的移动次数(关键字交换计为3次移动)。 (3)最后要对结果作出简单分析,包括对各组数据得出结果波动大小的解释。 -(1) of the following six kin
  3. 所属分类:数值算法/人工智能

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:xuezhijie
  1. PAIXU

    0下载:
  2. 数据结果论文.内部排序的比较 沈阳大学课程设计-Thesis data. Internal sort of comparison, Shenyang University of curriculum design
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-21
    • 文件大小:119808
    • 提供者:lvming
  1. QuickSort

    0下载:
  2. 快速排序是对冒泡排序的一种改进的排序方法,是目前各种内部排序方法中较快的方法-Quick Sort Bubble Sort is a sort of an improved method is to sort a variety of internal methods quicker method
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-21
    • 文件大小:1024
    • 提供者:hjs
  1. neibupaixu

    0下载:
  2. 数据结构课程设计实现内部排序算法的比较问题。-Data structure the curriculum design to achieve internal sorting algorithm comparison problem.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-21
    • 文件大小:179200
    • 提供者:李平
  1. sort

    0下载:
  2. 对内部排序中常见的简单选择排序,堆排序等进行比较分析-Sort of internal common simple choice to sort, heap sort, such as a comparative analysis
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-21
    • 文件大小:151552
    • 提供者:戚佳
  1. wannengpaixu

    0下载:
  2. 万能排序:主要是内部排序其中包括简单选择,冒泡,插入,交换等-Omnipotent sort: mainly including the internal sort simple choice, bubble, insertion, exchange, etc.
  3. 所属分类:软件工程

    • 发布日期:2024-05-21
    • 文件大小:446464
    • 提供者:朱俊杰
  1. TEST

    0下载:
  2. 数据结构试验 实验一 线性表的顺序表示与实现 实验二 线性表的链式表示与实现 实验三 栈与队列及其应用 实验四 二叉树的应用 实验五 图的遍历与应用 实验六 查找技术 实验七 内部排序 全部源码-Experimental test data structure form a linear sequence of that experiment and realization of the Second l
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-21
    • 文件大小:398336
    • 提供者:稻草人
  1. shu_ju_jie_gou_ke_cheng_she_ji(1)

    0下载:
  2. 数据结构课程设计源码以及报告 有3个程序:1)哈弗曼树及哈弗曼编码 2)排序—内部排序方法 3)Hanoi Tower-Data structure, as well as curriculum design source reported three procedures: 1)哈弗曼trees and哈弗曼coding 2) sort- internal sorting method 3) Hanoi Tower
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-21
    • 文件大小:253952
    • 提供者:利莉
« 1 2 3 4 56 7 8 9 10 ... 13 »

源码中国 www.ymcn.org