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

搜索资源列表

  1. 排序算法汇总和比较

    0下载:
  2. 实现了插入排序,希尔排序, 冒泡排序,快速排序,选择排序,堆排序和归并排序,以及可以对排序的性能进行分析,较适合用作排序算法的学习-achieved insertion sort, Hill, in order Bubble Sort, quick sort, select, in order of ranking and sculpture merge sorting, and sequencing can analyze the performance and more appropriat
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:37832
    • 提供者:叶靥
  1. 排序法

    0下载:
  2. 该程序详细解读了各种的排序方法的原理对初学者非常有帮助-the procedures detailed explication of the various methods of sorting principle to be very helpful to beginners
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:5742
    • 提供者:陈万通
  1. 18.二叉排序树的建立

    1下载:
  2. 本人数据结构学的还可以,所以多传了些数据结构的程序,希望大家多多支持,这个是二叉排序树的建立和查找-data structure can also learn, so most of the more-data structure of procedures in the hope that we can support, this is a binary tree in order to establish and identify
  3. 所属分类:界面编程

    • 发布日期:2008-10-13
    • 文件大小:12838
    • 提供者:赵麟
  1. 双端选择排序算法

    0下载:
  2. 双端选择排序算法:是选择排序算法的变种,可以定位每个子表中最小和最大元素 并把它们分别放在子表的开头和结尾.-dual-Selection Sorting Algorithm : The algorithm is to select the varieties, each positioning table for the smallest and largest elements and their son were on the table at the beginning and en
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1405
    • 提供者:倪莎
  1. 排序算法-java

    0下载:
  2. 用java实现的数据结构排序算法,包括:选择排序、插入排序、冒泡排序、希尔排序、快速排序、堆排序、归并排序。-used to achieve the ranking algorithm data structure, including : Select, in order of insertion sequence and Bubble Sort, Hill sequencing, rapid sequencing, heap sort, merging sequencing.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:54226
    • 提供者:陈为
  1. 几种排序方法的实现

    0下载:
  2. 用 插入排序, 希尔排序 ,冒泡, 快速排序 , 选择排序 ,堆排序, 归并排序 实现对任意随机数序列,并比较各种方法的运行快慢和复杂度-with insertion sort, Hill sequencing, bubbling Quick Sort, select, in order of ranking sculpture, merging order to achieve arbitrary random series, and compare the various methods o
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:389214
    • 提供者:陈婷
  1. 快速排序11

    0下载:
  2. haha 快速排序的程序 jkasdjkajdjakjdsa-haha rapid sequencing procedures jkasdjkajdjakjdsa
  3. 所属分类:界面编程

    • 发布日期:2008-10-13
    • 文件大小:10515
    • 提供者:徐崇
  1. 二叉树,图,排序,查找代码

    0下载:
  2. 二叉树,图,查找,排序的几个代码,用c 写的,能运行。不错的程序哦!-binary tree, map, locate, sort of several code used to write c, can run. Good procedures Oh!
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:6981
    • 提供者:张伟
  1. 递归算法快速排序

    0下载:
  2. 分而治之方法还可以用于实现另一种完全不同的排序方法,这种排序法称为快速排序(quick sort)。在这种方法中, n 个元素被分成三段(组):左段l e f t,右段r i g h t和中段m i d d l e。中段仅包含一个元素。左段中各元素都小于等于中段元素,右段中各元素都大于等于中段元素。因此l e f t和r i g h t中的元素可以独立排序,并且不必对l e f t和r i g h t的排序结果进行合并。m i d d l e中的元素被称为支点( p i v o t )。图1 4
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:176387
    • 提供者:李顺
  1. C++常用排序算法

    0下载:
  2. 这个主要介绍了C++常用的排序算法,编程序算法是相当重要的,希望这个对大家有帮助-introduces the C commonly used algorithm, the algorithm is programmed very important, we hope that the right help
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:3471
    • 提供者:刘庆
  1. 利用双向走动法改进冒泡排序算法C语言源代码

    0下载:
  2. 传统的冒泡排序法是这样操作:从前往后,依次比较两个相邻的元素,如果逆序则交换这两个元素值,然后继续往后操作;到了数据尾部时,就找出了一个最大值(或最小值)。然后重复上面的操作n-1次(n为元素个数)。相关的改进办法:按照上面的办法来操作的话,第一次扫描把最大数(或最小数)放到最后面的位置,第二次扫描时其实只需要扫描到倒数第二个位置就可以了,因为最后一个位置已经不需要判断了,以后的操作都是类似的。这样可以减小程序运行时间。-traditional Bubble Sort method is ope
  3. 所属分类:WEB源码

    • 发布日期:2008-10-13
    • 文件大小:4316
    • 提供者:张庚
  1. 排序算法Flash演示

    0下载:
  2. 数据结构的排序算法大家都听说过吧,现在有它的源程序演示,你不想要吗?-data structure algorithm you have heard about it and have demonstrated its source, you do not want?
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:25006
    • 提供者:安迪
  1. 冒泡、快速排序算法比较程序

    0下载:
  2. 数据结构课程设计:冒泡、快速排序的比较,用C语言编写,调试成功-curriculum design data structure : Bubble, rapid sequencing of comparison, the C language, debugging success
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1899
    • 提供者:qin
  1. 多关键字排序

    0下载:
  2. 数据结构里的作业之多关键字排序~字数又够了-data structure, operating as many as keyword ranking to the number of words in the 9,100
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:9479
    • 提供者:孙伟
  1. 二叉排序树及其查找

    1下载:
  2. 数据结构 上机 二叉排序树及其查找,包含更新二叉排序树存储二叉排序树上的查找,二叉排序树上的插入,二叉排序树上的删除等-data structure two forks on the plane and you sort tree, update contains two fork-tree storage binary search tree by sequencing, two tree fork insertion sort, two fork of the tree sort delet
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:1431
    • 提供者:大阳
  1. 排序和查找

    0下载:
  2. 常用的数据结构排序和查找算法:简单选择排序,冒泡排序,折半插入排序,快速排序,堆排序 顺序查找,折半查找.-commonly used data structures sorting and searching algorithms : simple choice, in order of Bubble Sort, half insertion sort, rapid sequencing, Heap Sort sequence search, binary search.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2577
    • 提供者:张杰
  1. 利用分治策略实现自然合并排序算法程序;

    0下载:
  2. 利用分治策略实现自然合并排序算法程序 方便地解决排序的问题-use the divide and conquer strategy to achieve natural merger procedures to facilitate sorting algorithm to solve the problem of sorting
  3. 所属分类:数据库编程

    • 发布日期:2008-10-13
    • 文件大小:15394
    • 提供者:无有
  1. 排序二叉树的应用数据结构课程设计

    3下载:
  2. 排序二叉树的应用数据结构课程设计.自己用来交过学期的设计报告.用好了请评价.-sort of binary tree data structure course design. Their handed over a semester to design reports. Please use the commentary price.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:40334
    • 提供者:YY
  1. 排序算法、字典和B-树的C++语言实现

    0下载:
  2. 排序算法、字典和B-树的C++语言实现 代码内容 包括以下算法: qui.c sort: quicksort qsort.c sort: qsort ins.c sort: insert sort shl.c sort: shell sort has.c dictionary: hash tables bin.c dictionary: binary tree rbt.c dictionary: red-black trees skl.c dic
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:24943
    • 提供者:罗鹏魁
  1. 二叉排序树完整版

    0下载:
  2. 二叉排序数。包括排序,插入,删除,查找。-ranking number two forks. Includes sorting, insert, delete, search.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2042
    • 提供者:面包
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 50 »
搜珍网 www.dssz.com