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

搜索资源列表

  1. quicksort.cpp

    0下载:
  2. quicksort的实现 三种写法,主要针对一些边界问题的优化
  3. 所属分类:源码下载

  1. quicksort

    0下载:
  2. Quicksort algorithm in C++.
  3. 所属分类:数据结构常用算法

  1. MPI_QuickSort.并行快速排序算法

    0下载:
  2. 并行快速排序算法,基于MPI 2.0 c语言实现,注释很清楚明确。,Parallel QuickSort base on MPI 2.0 in C language.
  3. 所属分类:数据结构常用算法

    • 发布日期:2017-03-22
    • 文件大小:2499
    • 提供者:zcc
  1. quicksort

    0下载:
  2. This code is an MPI version of the sorting algorithm QuickSort in c++. The partitioning step is meda sequantially, but the split and merge steps are made using Send and Recieve methods.
  3. 所属分类:MPI

    • 发布日期:2017-03-22
    • 文件大小:1733
    • 提供者:saretaxd
  1. quicksort

    2下载:
  2. 本人写的一个快速排序的程序,同时写出了用openmp进行的并行计算程序,并且对于串行和并行进行了时间的比较,希望对于初学openmp的同志有所帮助!-I was sort of a fast process, at the same time to write with the openmp parallel computing procedures, and serial and parallel for a comparison of the time, I hope for the beg
  3. 所属分类:MPI

    • 发布日期:2017-04-02
    • 文件大小:4932
    • 提供者:郭春付
  1. quicksort

    0下载:
  2. 用非递归实现快速排序 主要思想: 利用栈来消除递归-Non-recursive quicksort implementation the main idea: to eliminate the use of recursive stack
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-23
    • 文件大小:10857
    • 提供者:weixiaoguoke
  1. quicksort

    0下载:
  2. quick sort例子-quick sort example
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-11-09
    • 文件大小:1517
    • 提供者:站长
  1. quicksort

    0下载:
  2. 此程序是算法快速排序quicksort的迭代形式-This procedure is an iterative algorithm quicksort quicksort form
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:364984
    • 提供者:LHY
  1. QuickSort

    0下载:
  2. 迭代快速排序,基本上按照算法书上的算法思想来实现的-Iterative Quicksort basically in accordance with the algorithm book thinking algorithm to achieve the
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:111813
    • 提供者:taolizao
  1. quicksort

    0下载:
  2. 快速排序的实现程序,具有详细的说明,是初学者实用的学习例子-Quick Sort realize procedures, with detailed instructions for beginners are studying practical examples
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:8936
    • 提供者:王帅
  1. quicksort

    0下载:
  2. 快速排序法- Fast arrangement law
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-12-06
    • 文件大小:1348
    • 提供者:蓝枫
  1. quickSort

    0下载:
  2. vc++2005编写的快速排序算法,将随机产生的一组数进行排序,学习参考一下,不错的.-vc++2005 prepared Quicksort algorithm, will be a group of randomly generated numbers sorting, refer to study, not bad at all.
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:106610
    • 提供者:昌隆
  1. Quicksort

    0下载:
  2. quicksort algorithm implementation
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:828
    • 提供者:lifeless
  1. QuickSort

    0下载:
  2. quicksort自行取n個數,亂數排序,並檢視程序時間-quicksort to choose their own number n, random number sequencing, and view the program time
  3. 所属分类:Data structs

    • 发布日期:2017-03-25
    • 文件大小:234903
    • 提供者:kade
  1. Quicksort

    0下载:
  2. 快速排序 快速排序是一种在含n个数的输入数组上最坏情况运行时间为O(n*n)的算法。 -Quicksort
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:2731
    • 提供者:有趣
  1. Quicksort

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

    • 发布日期:2017-03-24
    • 文件大小:3133
    • 提供者:郑阳
  1. Quicksort

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

    • 发布日期:2017-04-02
    • 文件大小:618
    • 提供者:浩星无恨
  1. QuickSort

    0下载:
  2. 快速排序的优化算法,在原来快速排序的基础上加入插入排序,使得算法的时间爱你复杂度变低。-QuickSort write in C++ it s the optimization of QuickSort
  3. 所属分类:Data structs

    • 发布日期:2017-03-31
    • 文件大小:799
    • 提供者:su
  1. quicksort

    0下载:
  2. quicksort with threads
  3. 所属分类:CSharp

    • 发布日期:2017-04-02
    • 文件大小:28021
    • 提供者:Stf
  1. quicksort

    0下载:
  2. 快速排序(QuickSort)的基本思想和算法(Basic ideas and algorithms for fast sorting (QuickSort))
  3. 所属分类:数据结构

    • 发布日期:2018-01-08
    • 文件大小:10240
    • 提供者:ne_o
« 12 3 4 5 6 7 8 9 10 ... 26 »
搜珍网 www.dssz.com