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

搜索资源列表

  1. QuickSort

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

    • 发布日期:2017-04-10
    • 文件大小:588
    • 提供者:congyi
  1. quicksort

    0下载:
  2. 快速排序,算法。关于算法分析的一个小程序:快速排序。-quicksort,arithmetic study,sort
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:161048
    • 提供者:林建
  1. quicksort

    0下载:
  2. MPI快速排序C代码,并行编程,快速排序,并行编程-quicksort program
  3. 所属分类:MPI

    • 发布日期:2017-04-08
    • 文件大小:1955
    • 提供者:Li Yingjia
  1. quicksort

    0下载:
  2. 数据结构树的快速排序算法功能实现,主程序main,调用函数quicksort-Quicksort algorithm for data structure tree functions, the main program main function is called quicksort
  3. 所属分类:CSharp

    • 发布日期:2017-04-10
    • 文件大小:981
    • 提供者:范范
  1. QuickSort

    0下载:
  2. 步骤:设有一待排序的序列 1、分别设置low、high指向序列的最左端、最右端;从序列中选一个进行排序(通常选最左端的值low指向的值),存入到tmp; 2、从high端开始,查找比tmp小的,找到后将该值放入到low指向的存储位中;同时将high指向当前查到的值所在的位; 3、从low端开始,查找比tmp大的,找到后将该值放入到high指向的存储为中,同时low指向当前查到的值所在位; 4、若low位小于high位,返回步骤2;否则,将tmp值存入到空出来的low+1指向
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:6537
    • 提供者:马艳娟
  1. quicksort

    0下载:
  2. 快速排序法(quick sort)是目前所公认最快的排序方法之一.它最容易理解,也最符合轴心分割与左右进行排序的概念,适合对初学者进行讲解-Quicksort method (quick sort) is now recognized as one of the fastest sorting method. Easiest to understand, is most consistent with the the axis divided left and right sort of con
  3. 所属分类:CSharp

    • 发布日期:2017-11-23
    • 文件大小:4894
    • 提供者:刘丹
  1. quicksort

    0下载:
  2. It is a graphical representation of the famous quicksort . the program is in accordance to the algorithm described in Cormen.
  3. 所属分类:Algorithm

    • 发布日期:2017-12-09
    • 文件大小:127550
    • 提供者:amannith
  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
    • 文件大小:842746
    • 提供者:belinda
  1. Quicksort

    0下载:
  2. 基于C++平台,快速排序,希望可以让大家更加透彻的理解快速排序功能-To quicksort feature based on C++ platform, quicksort, allows more thorough understanding
  3. 所属分类:Printing program

    • 发布日期:2017-11-10
    • 文件大小:188113
    • 提供者:王智
  1. MergeSortL_AND-QuickSort

    0下载:
  2. MergeSortL_AND QuickSort,计算机算法设计与分析中的链表的归并排序算法和快速排序算法-MergeSortL_AND QuickSort, linked list merge sort algorithm in the design and analysis of computer algorithms, and fast sorting algorithm
  3. 所属分类:Console

    • 发布日期:2017-11-14
    • 文件大小:2424322
    • 提供者:陈乾福
  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
    • 文件大小:523
    • 提供者:張昕
  1. quicksort.rar

    0下载:
  2. 快速排序算法 实测通过 vs2010软件编写,Quicksort algorithm measured by vs2010
  3. 所属分类:Data structs

    • 发布日期:2017-11-26
    • 文件大小:2355333
    • 提供者:wang
  1. QuickSort

    0下载:
  2. 经典快速排序算法,适合初学者理解学习,基于《算法导论》中快排的伪代码实现的-The classic Quicksort algorithm suitable for beginners to understand, based on the pseudo-code in Introduction to Algorithms.
  3. 所属分类:Data structs

    • 发布日期:2017-12-10
    • 文件大小:4927
    • 提供者:tony
  1. QuickSort

    0下载:
  2. 快排,这个是我认为写得最好的快排代码了。快速排序可以在log2(n)的时间内对数组元素进行排序。-Fast row, this is my opinion, the best written fast row code. Quicksort log2 (n) time to sort the array elements.
  3. 所属分类:Console

    • 发布日期:2017-12-09
    • 文件大小:139515
    • 提供者:
  1. Quicksort

    0下载:
  2. 快速排序经典算法,官方经典快速排序算法,大家来看啊!-Quicksort classical algorithm,We look ah!
  3. 所属分类:Windows Kernel

    • 发布日期:2017-12-09
    • 文件大小:1128
    • 提供者:jys
  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
    • 文件大小:156379
    • 提供者:dxy
  1. QuickSort

    0下载:
  2. 数据结构中C语言所写的快速排序算法,与严蔚敏书上的比较一致-Quicksort algorithm, written in C language data structure book with Yan Wei Min
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-15
    • 文件大小:1979
    • 提供者:李亚运
  1. QuickSort

    0下载:
  2. 快速排序算法源代码使用C++实现,调试并运行通过-QuickSort C++
  3. 所属分类:Data structs

    • 发布日期:2017-11-07
    • 文件大小:6020997
    • 提供者:张旭
  1. QuickSort

    0下载:
  2. 快速排序,用数组的存储结构,实现数的排序。共有八组随机数据,还能够计算出每组数据的处理时间,最终得到平均时间。-Quicksort array storage structure, to achieve the sort of number. A total of eight sets of random data, but also be able to calculate the processing time of each data, and eventually obtain the
  3. 所属分类:Data structs

    • 发布日期:2017-11-13
    • 文件大小:330494
    • 提供者:小乔
  1. quicksort

    0下载:
  2. 实现quicksort的简单代码,输入数字 能用quicksort排序-Achieve quicksort simple code, enter the number can quicksort sorting
  3. 所属分类:Data structs

    • 发布日期:2017-11-14
    • 文件大小:560
    • 提供者:段雨佳
« 1 2 3 4 56 7 8 9 10 ... 26 »
搜珍网 www.dssz.com