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

搜索资源列表

  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. A java application which creates and fills an array of size 50 with random int values. It should then display the contents of the array sort the array by calling a quicksort method and then finally display the array contents again.-A java application
  3. 所属分类:Jsp/Servlet

    • 发布日期:2017-05-29
    • 文件大小:11485308
    • 提供者:lennoxb
  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. 快速排序java实现的快速排序,对于内容理解很有帮助-It is the QuickSort with the language JAVA
  3. 所属分类:Java Develop

    • 发布日期:2017-04-10
    • 文件大小:685
    • 提供者:郝庭毅
  1. QuickSort

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

    • 发布日期:2017-05-03
    • 文件大小:549300
    • 提供者:minibeetle
  1. QuickSort

    0下载:
  2. 快速排序(QuickSort)是一种有效的排序算法。虽然算法在最坏的情况下运行时间为O(n^2),但由于平均运行时间为O(nlogn),并且在内存使用、程序实现复杂性上表现优秀,尤其是对快速排序算法进行随机化的可能,使得快速排序在一般情况下是最实用的排序方法之一。快速排序被认为是当前最优秀的内部排序方法。-Quick Sort (QuickSort) is an efficient sorting algorithms. Although the algorithm runs in the wo
  3. 所属分类:JavaScript

    • 发布日期:2017-03-31
    • 文件大小:608
    • 提供者:庭月照
  1. Quicksort

    0下载:
  2. QuickSort 快速排序算法 重要的排序算法之一-QuickSort important sort idea in cs
  3. 所属分类:software engineering

    • 发布日期:2017-05-07
    • 文件大小:1060773
    • 提供者:msfiona
  1. Quicksort-and-binary-search

    0下载:
  2. 实现了快速排序和二分查找算法,经典简单,并有测试截图-Quicksort and binary search algorithm
  3. 所属分类:File Formats

    • 发布日期:2017-04-04
    • 文件大小:33396
    • 提供者:高超仪
  1. Quicksort

    0下载:
  2. 快速排序算法代码,自己写的,大家可以参考参考-quicksort code
  3. 所属分类:Jsp/Servlet

    • 发布日期:2017-04-09
    • 文件大小:732
    • 提供者:李强
  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 2 3 4 5 6 78 9 10 11 12 ... 30 »
搜珍网 www.dssz.com