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

搜索资源列表

  1. Quicksort

    0下载:
  2. 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-Quick Sort (Quicksort) is an improvement on the bubble sort. By CAR Hoare in 1962. The bas
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-12-09
    • 文件大小:3351
    • 提供者:SmileHF
  1. QuickSort

    0下载:
  2. 快速排序与随机化快速排序,控制台实现。10000以上各数测试-The quicksort randomized quick sort, to achieve console. 10,000 more than the number of test
  3. 所属分类:Console

    • 发布日期:2017-11-30
    • 文件大小:1103872
    • 提供者:tanzhaofei
  1. quicksort

    0下载:
  2. 一个实现快速排序算法的小代码。输入任意数字进行快速排序-realize the quicksort
  3. 所属分类:Other systems

    • 发布日期:2017-12-05
    • 文件大小:608
    • 提供者:郑林
  1. QuickSort

    0下载:
  2. Quicksort is a divide and conquer algorithm. Quicksort first divides a large list into two smaller sub-lists: the low elements and the high elements. Quicksort can then recursively sort the sub-lists. The steps are: Pick an element, called a pivo
  3. 所属分类:MacOS develop

    • 发布日期:2017-11-24
    • 文件大小:5115
    • 提供者:domix
  1. quicksort-omp

    0下载:
  2. 利用omp將quicksort達到平行化效果-Omp parallel use of the quicksort
  3. 所属分类:Other systems

    • 发布日期:2017-11-15
    • 文件大小:902
    • 提供者:黃鼎藥
  1. quickSort

    0下载:
  2. 快速排序是由东尼·霍尔所发展的一种排序算法。在平均状况下,排序 n 个项目要Ο(n log n)次比较。在最坏状况下则需要Ο(n2)次比较,但这种状况并不常见。事实上,快速排序通常明显比其他Ο(n log n) 算法更快,因为它的内部循环(inner loop)可以在大部分的架构上很有效率地被实现出来。-Quicksort is developed by the East Ni Huoer a sorting algorithm. In the average case, sort n item
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:203159
    • 提供者:Guangge
  1. quicksort

    0下载:
  2. 用快排思想的c程序。输入为元素个数+元素序列。输出为排序后的结果。与其他类似的排序程序如,插入、选择等相比,实现效率更高。-This is a quicksort program to deal with scheduling problems, which is pretty faster than other methods.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:611
    • 提供者:emma
  1. QuickSort

    0下载:
  2. 快排算法QuickSort的C实现 算法高效-Fast algorithm of QuickSort C implementation Algorithm is highly efficient
  3. 所属分类:Other systems

    • 发布日期:2017-05-18
    • 文件大小:4774811
    • 提供者:zzw
  1. quicksort

    0下载:
  2. 使用MPI编程实现快速排序的并行化 (1) 并行算法的设计 设计快速排序的并行化算法,说明并行化的算法的设计思想。 (2) MPI编程 使用MPI编程实现快速排序的并行化。 (3) 对运行结果的对比和分析。 -Quick Sort programming using MPI parallelization (1) parallel algorithm design parallel algorithm design quick sort, indicating paral
  3. 所属分类:MPI

    • 发布日期:2017-03-27
    • 文件大小:2306
    • 提供者:
  1. quicksort

    0下载:
  2. 快速排序的实现,经过严格测试,代码能正常运行。-Quicksort implementation, after rigorous testing, code can be run properly.
  3. 所属分类:Other systems

    • 发布日期:2017-04-13
    • 文件大小:1659
    • 提供者:jaub
  1. QuickSort

    0下载:
  2. 快速排序,采用C++的分治思想。是十大排序算法中效率最高的一个-QuickSort,in C++
  3. 所属分类:source in ebook

    • 发布日期:2017-04-15
    • 文件大小:7300
    • 提供者:诸葛光
  1. quicksort

    0下载:
  2. 这是著名的快速排序算法,很经典啊,请大家熟悉!-this is a quicksort!
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:627110
    • 提供者:董肖
  1. QuickSort

    0下载:
  2. 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。-Quick Sort
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:920
    • 提供者:xycy
  1. QuickSort

    0下载:
  2. Visual C++ QuickSort Implementation
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:549300
    • 提供者:minibeetle
  1. quicksort-vs-mergesort-2-ver

    0下载:
  2. Time comparison between iterative and recursive version of quicksort and mergesort algorithm
  3. 所属分类:Algorithm

    • 发布日期:2017-04-28
    • 文件大小:60093
    • 提供者:gunawan
  1. QuickSort

    0下载:
  2. 快速排序(快速排序)是一种快速排序算法,它被广泛应用于实践。它是用于分而治之的原则。快速排序的工作原理是划分一个给定的数组A [P。 。 R]分成两个非空的子阵列A [页。 。 Q]和A [Q + 1。 。 R]使得在[P每个元素。 。问]是小于或等于每个元素A [Q + 1。 。 R]。然后两个子阵列被递归调用快速排序排序。快速排序的细节描述如下: 1.选择一个支点值(基准)。您可以采取的第一个元素的值 枢轴值,但它可以是任何值,这是在排序的值的范围,即使它不存在于阵列中。 2.分
  3. 所属分类:CSharp

    • 发布日期:2017-04-28
    • 文件大小:10902
    • 提供者:lefter
  1. QuickSort

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

    • 发布日期:2017-04-29
    • 文件大小:24958
    • 提供者:mehrdad
  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 2 3 4 5 67 8 9 10 11 ... 26 »
搜珍网 www.dssz.com