CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 其他小程序 搜索资源 - quicksort

搜索资源列表

  1. quicksort

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

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

    0下载:
  2. 实现快速排序 主要是采用指针的方式来随机产生大量数并排序-The realization of quick sort is the main way to target a large number of randomly generated number and sort
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-30
    • 文件大小:543byte
    • 提供者:小飞
  1. paixu

    0下载:
  2. 归并排序C++程序,快速排序C++程序,可在C++环境中实现的源代码-Merging Sort C++ Procedure quicksort C++ Procedures may C++ Environment source code
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:1.08kb
    • 提供者:xjlysy
  1. QuickSort

    0下载:
  2. 实现了快速排序,还不够20字啊,这怎么行呢 -none
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:638byte
    • 提供者:Proly
  1. kuaipai

    0下载:
  2. 快速排序算法是排序中相对来说比较好的算方法,大家可以看看啊 -Quicksort sorting algorithm is in relatively good balance method, we can look at ah Hehe
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-26
    • 文件大小:600byte
    • 提供者:zhangfei
  1. NumSort

    0下载:
  2. 用VC++实现快速排序,迭代的使用,函数中含有排序个数,可以自行修改-QuickSort
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:173.89kb
    • 提供者:FairyTopia
  1. quicksort

    0下载:
  2. 快速 排序-Quick Sort
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:941byte
    • 提供者:谢园普
  1. Quicksort

    0下载:
  2. 基于分治算法的快速排序。编程工具vc++6.0.时间复杂度O(nlogn)-Divide and Conquer Algorithm Quicksort
  3. 所属分类:Other systems

    • 发布日期:2017-05-01
    • 文件大小:635.56kb
    • 提供者:wujing
  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
    • 文件大小:3.06kb
    • 提供者:郑阳
  1. quicksort

    0下载:
  2. A program to perform quicksort
  3. 所属分类:Other systems

    • 发布日期:2017-04-11
    • 文件大小:540byte
    • 提供者:kkkk
  1. quickSort

    0下载:
  2. 一个快速排序的小程序,对新手理解快速排序很有帮助。欢迎新手下载-A small program of quicksort, quicksort helpful for the novice to understand. Welcome novice downloads
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-05
    • 文件大小:822.99kb
    • 提供者:belinda
  1. Quicksort

    0下载:
  2. 快速排序void QuickSort(int a[], int low, int high) { int i if(low<high) { i=Slipt(a,low,high) QuickSort(a,low,i) QuickSort(a,i+1,high) } } -void QuickSort(int a[], int low, int high) { int i if(low<high)
  3. 所属分类:Other systems

    • 发布日期:2017-12-01
    • 文件大小:523byte
    • 提供者:張昕
  1. quicksort

    0下载:
  2. 自己写的C语言标准快速排序,菜鸟一个,希望对初学者有所帮助。-Write your own C language standard quicksort, a rookie, I hope to help beginners.
  3. 所属分类:Other systems

    • 发布日期:2017-12-04
    • 文件大小:152.71kb
    • 提供者:dxy
  1. quicksort

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

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

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

    • 发布日期:2017-11-15
    • 文件大小:902byte
    • 提供者:黃鼎藥
  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
    • 文件大小:198.4kb
    • 提供者: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
    • 文件大小:611byte
    • 提供者:emma
  1. QuickSort

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

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

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

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

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

    • 发布日期:2017-04-12
    • 文件大小:920byte
    • 提供者:xycy
« 12 3 4 5 »
搜珍网 www.dssz.com