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

搜索资源列表

  1. quicksort.rar

    0下载:
  2. 快速排序法
  3. 所属分类:数值算法/人工智能

    • 发布日期:
    • 文件大小:1077
    • 提供者:
  1. quicksort.zip

    0下载:
  2. quick sort例子
  3. 所属分类:数值算法/人工智能

    • 发布日期:
    • 文件大小:1204
    • 提供者:
  1. 3040932027project3

    0下载:
  2. 比较InsertionSort,Shellsort,Quicksort快慢-comparison InsertionSort, Shellsort, Quicksort speed
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:488814
    • 提供者:潘超
  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. Quick@HeapSort

    0下载:
  2. 一个关于headsort 和 quicksort 比较的程序,从这个例子可以看出在各个不同的情况下,headsort 和 quicksort 做了多少次比较. -headsort on a comparison of quicksort and procedures from this example can be seen in various circumstances, and quicksort headsort done a number of times earlier.
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:10972
    • 提供者:魏昕
  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. 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. 2-sou-suo

    0下载:
  2. 分别用快速排序和分治算法对随机产生的200个数进行排序-respectively quicksort algorithm and the partition of the 200 randomly generated number Sort
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:9118
    • 提供者:lipei
  1. quick_sort

    0下载:
  2. 一个quicksort的算法 有关数据结构的-a quicksort algorithm data structure
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1096
    • 提供者:fang
  1. QuickSort

    0下载:
  2. Sort by quicksort ... sort , c#
  3. 所属分类:Other systems

    • 发布日期:2017-04-29
    • 文件大小:24958
    • 提供者:mehrdad
  1. QuickSort

    0下载:
  2. 算法课上学习了快速排序,这是我课下自己实现的快排,希望对大家有用!-Solution to quicksort problem
  3. 所属分类:Java Develop

    • 发布日期:2017-04-11
    • 文件大小:662
    • 提供者:刘磊
  1. quicksort-program

    0下载:
  2. 这是一个快速排序程序,我已经经过调试并成功运行,实用快捷方便。-It is a quicksort problem for the irregularity numbers,I have debuged it and successfully operationed,practical、speedy and convinience.
  3. 所属分类:CSharp

    • 发布日期:2017-04-15
    • 文件大小:5897
    • 提供者:吴峰
  1. QuickSort

    0下载:
  2. Quicksort (sometimes called partition-exchange sort) is an efficient sorting algorithm, serving as a systematic method for placing the elements of an array in order. Developed by Tony Hoare in 1959
  3. 所属分类:CSharp

    • 发布日期:2017-04-13
    • 文件大小:1613
    • 提供者:Linh Nguyen
  1. Quicksort-and-Randomized-Quicksort

    0下载:
  2. 快速排序与随机快速排序,并且解决问题,计数其中重复排序次数与最大最小次数-3. Implement Quicksort and Randomized Quicksort. Answer the following questions. (1) How many comparisons will Quicksort do on a list of n elements that all have the same value? (2) What are the maximum and minimu
  3. 所属分类:Other systems

    • 发布日期:2017-12-13
    • 文件大小:1612
    • 提供者:马越
  1. Quicksort

    0下载:
  2. 快速排序代码,希望通过此代码,能够为c++语言新手提供学习上的帮助(Quicksort ,the Quicksort is hope to help someone study c++)
  3. 所属分类:数据结构

    • 发布日期:2017-12-19
    • 文件大小:5120
    • 提供者:紫夜风流
  1. SortAndSearch

    0下载:
  2. 快速排序算法,二分法搜索算法,Java程序,可以实现对数值的排序及搜索(quicksort and bionary search, java class)
  3. 所属分类:其他

    • 发布日期:2017-12-31
    • 文件大小:1024
    • 提供者:开心小筱
  1. Quicksort

    0下载:
  2. 实现一个快速排序,快速排序(Quicksort)是对冒泡排序的一种改进。快速排序由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中。。。。。。(To achieve a quick sort, quick sort (Quicksort) is an improvement on bubble sort. Quick sorting was proposed by C. A. R. Hoare in 1962. The basic
  3. 所属分类:Windows编程

    • 发布日期:2017-12-31
    • 文件大小:218112
    • 提供者:binjun
  1. Quick Sort

    0下载:
  2. BITCS数据结构"快速排序"编程练习题,已AC通过,仅供参考学习(BITCS data structure programming exercises--Quicksort, which have been passed by AC, are for reference only.)
  3. 所属分类:Windows编程

    • 发布日期:2018-01-07
    • 文件大小:2048
    • 提供者:Finn Tian
  1. build

    0下载:
  2. 读取data把一组乱序的数字由小到大通过MergeSort与QuickSort的方式排序,并对比两种排序。(Read a list of unorder numbers and by using MergeSort and QuickSort to sort these numbers, and comparing two different type sorting.)
  3. 所属分类:其他

    • 发布日期:2018-04-22
    • 文件大小:23552
    • 提供者:万润快点涨
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 30 »
搜珍网 www.dssz.com