CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 排序算法

搜索资源列表

  1. sorting_algorithms_in_assembly

    1下载:
  2. 一个演示了用汇编语言编写的数据排序算法,源代码非常详细-a demonstration of assembler language data sorting algorithms, source code very detailed
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:185659
    • 提供者:卢青波
  1. Some_Sort_Program_Implement_by_C

    0下载:
  2. 几种排序算法的C语言实现 用函数实现如下算法: (1) 直接插入排序, 希尔排序 (2) 冒泡排序, 快速排序 (3) 选择排序, 堆排序 (4) 归并排序 (5) 基数排序 -several algorithm using C language function algorithm to achieve the following : (a) direct insertion sort, Hill sequencing (2) Bubble Sort, rapid
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:4008
    • 提供者:丘方
  1. SortProgram

    1下载:
  2. 包含八种排序算法的界面演示多线程程序,以线段形式表示数据大小,排序一清二楚-contains eight algorithm interface demo multithreaded process to form indicates that the data segment size, sorting clearly
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:54351
    • 提供者:li
  1. GreedyTP

    0下载:
  2. 同学做的基于贪婪策略的拓扑排序算法可视化演示程序,支持用户自己画出拓扑图,VC++.net下测试通过。-students so greedy strategy based on the topological sorting algorithm visualization demo program that allows users to draw their own topology map, VC. Net under test.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:68808
    • 提供者:杨智丹
  1. hebingxulie

    0下载:
  2. 复杂度比冒泡法更低的排序算法,合并序列排序法-complexity law bubbling lower than the ranking algorithm, combined sequence Sort
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1426
    • 提供者:Wiracle
  1. 7d

    0下载:
  2. 7种内部排序算法的比较 里面含 测试代码!-seven internal sorting algorithm inside compared with the test code!
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:6764
    • 提供者:王哲江
  1. shellsort111

    0下载:
  2. 附有本人超级详细解释(看不懂的面壁十天!) 一、 实际问题: 希尔排序(Shell Sort)是插入排序的一种。因D.L.Shell于1959年提出而得名。它又称“缩小增量分类法”,在时间效率上比插入、比较、冒泡等排序算法有了较大改进。能对无序序列按一定规律进行排序。 二、数学模型: 先取一个小于n的整数d1作为第一个增量,把文件的全部记录分成d1个组。所有距离为dl的倍数的记录放在同一个组中。先在各组内进行直接插人排序;然后,取第二个增量d2<d1重复上述的分组和
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:19421
    • 提供者:乐乐
  1. java-que

    0下载:
  2. 排序算法在设计性程序中经常用到,java实现功能紧凑,能够深入的学习其用法-algorithm in the design process frequently used, java achieve functional compact, in-depth study of its usage
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2656
    • 提供者:小刚
  1. Algorithmn

    0下载:
  2. 几种排序算法的VC++实现,包括选择排序,插入排序,归并排序,自底向上排序,快速排序-several algorithm VC, including the option of sorting, insertion sort, merge, in order of ranking from the bottom up, Quick Sort
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:36866
    • 提供者:d
  1. ManySort

    0下载:
  2. 数组排序算法-----这个程序的头文件中包含四种排序方法:泡沫排序法,插入排序法,快速排序法和选择排序法-array algorithm ----- this procedure the first document contains four ranking : bubble sort, insertion sort, quick sort and select Sort
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:30563
    • 提供者:popandsmtp
  1. SocketDemo1

    0下载:
  2. 数据结构----常用算法的堆排序算法,完整版可直接编译运行,教学实验中常用!-data structure-the reactor algorithm commonly used algorithm, a complete version can be run directly translated, Teaching experiment used!
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:57566
    • 提供者:popandsmtp
  1. Sortutil

    0下载:
  2. 排序算法,用java语言来实现,简单易懂,语句少-sorting algorithm using java language to achieve and easily understood, the statement less
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:938
    • 提供者:suhu
  1. Huffman 算法的不同实现

    0下载:
  2. ---- Huffman 算法的不同实现 本目录下的程序用8种不同的方式实现了Huffman编码算法,这8种方式分别是 * huffman_a 使用链表结构生成Huffman树的算法,这是最基本的实现方法,效率最低。 * huffman_b 使用《数据结构》(严蔚敏,吴伟民,1997,C语言版)中给出的算法,将二叉树存放在连续空间里(静态链表),空间的每个结点内仍有左子树、右子树、双亲等指针。 * huffman_c 使用Canonical
  3. 所属分类:密码/编码算法

    • 发布日期:2010-07-01
    • 文件大小:32702
    • 提供者:ray
  1. 20050305182157_quicksort

    0下载:
  2. 快速排序算法。生成10个随机数,显示在编辑框中,调用快速排序函数,对前10 个编辑框中的数字进行排序。-quicksort algorithm. Generate 10 random numbers show that, in the edit box, called Quick Sort function, right before the 10 box editing the figures for the ranking.
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:141116
    • 提供者:song
  1. heapsort2.c

    0下载:
  2. 堆排序算法的过程演示 请多多指教-heap sorting algorithm process demonstrated great weekend!
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1348
    • 提供者:龙太雷
  1. sortwenzi

    0下载:
  2. 通过VC++实现的各种文字通用的排序算法,方便实用,但需要各种文字的基字的码表-through VC + + language of the common algorithm, convenient and practical, it needs all kinds of written characters of the base code table
  3. 所属分类:中文信息处理

    • 发布日期:2008-10-13
    • 文件大小:26270
    • 提供者:刘本
  1. phoenix

    0下载:
  2. 模式识别的两个重要算法:剃度下降法,固定增量法.另付数据结构中:高级排序算法,波兰式-two important pattern recognition algorithm : tonsure decline, fixed increment. Extra data structure : High ranking algorithm, Poland -
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:3545
    • 提供者:吕经纬
  1. sort111111

    0下载:
  2. 数据结构排序算法6个例子,是数据结构的综合应用-data structure algorithm six example, the data structure is integrated application
  3. 所属分类:Web服务器

    • 发布日期:2008-10-13
    • 文件大小:10778
    • 提供者:啊木
  1. FormArray

    0下载:
  2. 快速排序和随机快速排序的比较,快速排序在比较顺序的情况下速度很慢,所以采用随机快速排序算法-rapid sequencing and the rapid sequencing of random comparison, the relatively rapid sequencing of the sequence of very slow, So random Quick Sort Algorithm
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:10563
    • 提供者:张国平
  1. paixu102

    0下载:
  2. 有关排序算法的比较!含有各种简单的排序算法 c语言-the algorithm comparison! Containing a variety of simple language c Sorting Algorithm
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:15338
    • 提供者:chen
« 1 2 ... 13 14 15 16 17 1819 20 21 22 23 ... 50 »
搜珍网 www.dssz.com