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

搜索资源列表

  1. QuickSort

    0下载:
  2. C++实现的快速排序,有输出中间的详细过程-C++ achieve quick sort, with output in the middle of the detailed process
  3. 所属分类:Other systems

    • 发布日期:2017-04-17
    • 文件大小:147799
    • 提供者:高志烽
  1. quicksort

    0下载:
  2. 《算法导论》第三版中快速排序伪码的C语言实现-"Introduction to Algorithms" the third edition of Quick Sort pseudo-code in C language
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:999
    • 提供者:冉天纲
  1. quickSort

    0下载:
  2. 算法导论第三版上快速排序java的实现。-Introduction to the third edition of the quick sort algorithm java implementation.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-10
    • 文件大小:917
    • 提供者:liu
  1. 44

    0下载:
  2. 现有一个接口DataOperation定义了排序方法sort(int [])和查找方法search(int[], int),已知类QuickSort的quickSort(int [])方法实现了快速排序算法,类BinarySearch的binarySearch(int[], int)方法实现了二分查找算法。现使用适配器模式设计一个系统,在不修改源代码的情况下将类QuickSort和类BinarySearch的方法适配到DataOperation接口中。-An existing interface
  3. 所属分类:JavaScript

    • 发布日期:2017-04-15
    • 文件大小:5808
    • 提供者:鬼才
  1. quicksort

    0下载:
  2. 快速排序,能够较快的对数据进行排序,使用C++进行编写,以通过验证-Quick sort, able to sort the data faster, use C++ be written to by verifying
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-17
    • 文件大小:218220
    • 提供者:chinese
  1. QuickSort

    0下载:
  2. java版的快速排序算法,能够帮助初学者理解快排的工作流程-java version of the quick sort algorithm, can help beginners understand the workflow fast row
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-14
    • 文件大小:2785
    • 提供者:chinese
  1. quickSort.cpp.tar

    0下载:
  2. 这是一个快速排序的算法源程序,算法被单独写成一个函数,希望对大家有用-This is a quick sorting algorithm source code, algorithms are written as a single function, we hope to be useful
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:878
    • 提供者:
  1. quicksort

    0下载:
  2. 快速排序算法及其优化,在序列长于某个给定值时递归采用快速排序,小于这个值时用插入排序代替快排,以优化快速排序的性能,同时程序记录优化前后的程序耗时给出比较。-Quick sort algorithm and optimization, in sequence longer than a given value recursively using quick sort, is less than this value quickly replaced by rows of insertion so
  3. 所属分类:Java Develop

    • 发布日期:2017-04-10
    • 文件大小:852
    • 提供者:eating
  1. CompQsortToMsort

    0下载:
  2. 分治算法与快速排序时间比较,根据运行时间比较其算法的优越性。-compare quicksort to mergesort
  3. 所属分类:MPI

    • 发布日期:2017-04-16
    • 文件大小:28883
    • 提供者:wxl
  1. QuickSort

    0下载:
  2. 本程序实现了数据结构课程中的快速排序算法-This program implements a data structure courses in the quick sort algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1093
    • 提供者:II
  1. QuickSort

    0下载:
  2. 多种快速排序算法集合,经过优化,VC 6.0运行通过,控制台程序-Collection of a variety of quick sort algorithm, optimized, VC 6.0 run through the console program
  3. 所属分类:Console

    • 发布日期:2017-04-23
    • 文件大小:195969
    • 提供者:jiyinghui
  1. Java-codes

    0下载:
  2. java开发的程序,里面包括huffman、quicksort、hash、q_sort。-Codes developed by java, concluding huffman tree, quicksort,hash,q_sort.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-06
    • 文件大小:226464
    • 提供者:学士
  1. HandoutNew

    0下载:
  2. 1 随机产生一批整数 2 手动输入一批整数3 将表中数据随机化4 快速排序 5 希尔排序6 堆排序7 归并排序 -A number of randomly generated integer integer from 2 to manually enter the number of the data in Table 3 randomized quicksort 4 5 6 Hill sort merge sort heap sort 7
  3. 所属分类:Other Embeded program

    • 发布日期:2017-04-07
    • 文件大小:42470
    • 提供者:徐雅文
  1. qsort_main.m

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

    • 发布日期:2017-04-11
    • 文件大小:1033
    • 提供者:wss007bld
  1. listsort.tar

    0下载:
  2. 常见的排序算法大致分为四类: 1.插入排序:插入排序(insert.c)、shell排序(shellsort.c) 2.选择排序:选择排序(selectsort.c)、堆排序(heapsort.c) 3.交换排序:冒泡排序(bubblesort.c)、快速排序(quicksort.c) 4.归并排序(mgergesort.c)-Common sorting algorithm is broadly divided into four categories: 1 Insert
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:183585
    • 提供者:BeSky
  1. common-sort

    0下载:
  2. 常见的三大排序?:bubblesort(冒泡排序),Insertsort(插入排序),quicksort(快速排序)-Three common sort? : Bubblesort (bubble sort), Insertsort (insertion sort), quicksort (quick sort)
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:788
    • 提供者:郭同学
  1. Sorts

    0下载:
  2. 七种常用的排序方法:冒泡排序,直接插入排序,直接选择排序,希尔排序,归并排序,快速排序和堆排序。 在DEV C++上可运行-Seven Sort Algorithm, including BubbleSort, InsertSort, SelectSort, ShellSort, MergerSort, QuickSort, HeapSort.
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:5946
    • 提供者:liu
  1. quicksort

    0下载:
  2. C语言快速排序法,简洁高效,已经编译运行通过,且正确!-quick sort
  3. 所属分类:CSharp

    • 发布日期:2017-04-25
    • 文件大小:188041
    • 提供者:秦成斌
  1. wordNSort

    0下载:
  2. Word class and Generalized Quicksort method
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:1039
    • 提供者:dt8269
  1. Quicksort

    0下载:
  2. 快速排序java代码,无抄袭,自己编写,愿对大家有帮助!-Quick sort java code, no plagiarism, their preparation, and is willing to help everyone!
  3. 所属分类:Java Develop

    • 发布日期:2017-04-12
    • 文件大小:703
    • 提供者:wang
« 1 2 ... 20 21 22 23 24 2526 27 28 29 30 »
搜珍网 www.dssz.com