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

搜索资源列表

  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. 递归算法快速排序

    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. 0305111

    0下载:
  2. 很好的一个DD。。 能够进行快速排序...利用C语言实现,8种排序算法! 例如:插入排序、快速排序、选择排序、冒泡排序、堆排序、希尔排序、归并排序、基数排序!-good a DD. . To conduct rapid sequencing ... use C language, eight algorithm! For example : insert sequencing, Quick Sort, select, in order of Bubble Sort, heap sort, Hil
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:5107
    • 提供者:333
  1. tros

    0下载:
  2. 这个程序可以对多个数字进行快速排序,只要对排序数的多少进行修改,就可以变成任意个有限数的排序了-this procedure can be carried out on a number of Quick Sort figures, as long as the sequencing The number of revision it can be turned into a limited number of arbitrary 000 ranking of the
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1075
    • 提供者:
  1. 快排

    0下载:
  2. 快速排序 算法的基本思想: 快速排序的基本思想是基于分治策略的。对于输入的子序列ap..ar,如果规模足够小则直接进行排序,否则分三步处理 -fast algorithm basic idea : Quick Sort The basic idea is based on the divide and conquer strategy. For input sequences ap .. ar, if the scale is small enough for dire
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:25441
    • 提供者:李伯
  1. quickSort3.12

    1下载:
  2. 内存映射,多线程快速排序,测试速度1000000/30s-memory mapping, multi-threaded quick sort, test speed 1000000/30s
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:5764585
    • 提供者:王占亭
  1. IoSort

    0下载:
  2. 用汇编的类编程实现快速排序的例子,本例子按字符串索引,支持插值和删除!-category with a compilation of programming Quick Sort example, by the example of the string indexing, support interpolation and delete!
  3. 所属分类:汇编语言

    • 发布日期:2008-10-13
    • 文件大小:3928
    • 提供者:钱海兵
  1. Ckuhanshu

    0下载:
  2. 函数名: qsort 功 能: 使用快速排序例程进行排序 用 法: void qsort(void *base, int nelem, int width, int (*fcmp)()) 程序例:-function : qsort function : Routine use of Quick Sort Sort Usage : void qsort (void * base, nelem int, int width, int (* fcmp) ()) process cas
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:3285
    • 提供者:奕竹
  1. PX

    0下载:
  2. oid Reset() //重置\"次数\", 即比较与移动的效率统计 int BubbleSort(int length, int ls[]) //冒泡排序 int InsertSort(int length, int ls[]) //插入排序 int SelectSort(int length, int ls[]) //选择排序 int QuickSort(int length, int ls[]) //快速排序 int ShellSort(int length, int
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:1122
    • 提供者:Hy
  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. Q_SORT

    0下载:
  2. 快速排序C++源码,已测试过-Quick Sort C source code, has tested.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1015
    • 提供者:高振翔
  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. cfastsort快速排序

    0下载:
  2. 使用VB的快速排序算法-use VB Quick Sort Algorithm
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:1605
    • 提供者:吕程
  1. squall

    0下载:
  2. 快速排序源码下载-Quick Sort source download
  3. 所属分类:中文信息处理

    • 发布日期:2008-10-13
    • 文件大小:899
    • 提供者:程伟
  1. QUIKSORT

    0下载:
  2. 快速排序,动态生成数组,然后通过算法实现排序-Quick Sort, dynamic generation array, then sorting algorithm
  3. 所属分类:Static控件

    • 发布日期:2008-10-13
    • 文件大小:12136
    • 提供者:李飞
  1. SortArithmetic

    0下载:
  2. 学习数据结构写的排序代码,有冒泡排序、直接插入、希尔排序、简单选择排序、快速排序、堆排序-study data structure was sort of code, Bubble Sort directly inserted, Hill, in order of simple choice, in order of Quick Sort, Heap Sort
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:128813
    • 提供者:陈飞
  1. 快速排序算法

    0下载:
  2. 快速排序算法,很好用,用c++编,拷贝在文本里,大家可以参考参考哦.-quick sort algorithm is useful, with c writers, copy in the text, one can refer to Reference oh.
  3. 所属分类:数值算法/人工智能

    • 发布日期:2010-07-09
    • 文件大小:3150
    • 提供者:严倾
  1. C++Builder_Sort

    0下载:
  2. 该程序把多种排序集中体现,包含了冒泡法排序、快速排序等多种排序方法,同时还详细讲述各种排序的分析,希望对编程初学者有一定帮助。-procedures for a variety of the sort embodied includes the Bubble Act, ranked Quick Sort and other ranking methods also explain in detail various sort of analysis, and I hope to the prog
  3. 所属分类:数学计算/工程计算

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

    0下载:
  2. 插入排序,希尔排序,冒泡排序,快速排序,选择排序程序实现。-insertion sort, Hill, ranked bubble sort, quick sort, select Sort program.
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:1600
    • 提供者:飞鸿
« 1 2 ... 9 10 11 12 13 1415 16 17 18 19 ... 50 »
搜珍网 www.dssz.com