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

搜索资源列表

  1. DEMO(sort)

    0下载:
  2. 实现各种内部排序。包括冒泡排序,直接插入排序,Shell排序,快速排序,堆排序,并比较排序的比较次数和移动次数。主要是C语言。-achieve internal order. Including bubble sort, direct insertion sort, Shell sort, quick sort, heap sort, and compare the ranking of number and mobile number. C is the main language.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:10796
    • 提供者:张某某
  1. sort-all

    0下载:
  2. 本程序完成实验要求的全部功能直接插入排序、SHELL排序、冒泡排序、快速排序、简单选择排序、堆排序、归并排序、基数排序,程序代码符合书写规范,实验报告叙述清晰完整,有详尽的分析和总结。 在实验过程中,积极配合本团队分工合作的精神,努力学习,总算不负众望,将程序编好,在此,我更想感谢的是老师的教导,在她的帮助下,我才顺利完成了本次的任务。 -the experimental procedures are completed all the functional requirements o
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:97242
    • 提供者:马全
  1. my-sort

    0下载:
  2. 内部排序算法比较,6种常用的内部排序算法进行实测比较:一趟冒泡排序、简单选择排序、快速排序、希尔排序、直接插入排序、堆排序。-internal sorting algorithm, six kinds of internal sorting algorithm measured comparison : Bubble Sort trip, Sort simple choice, quick sort, Hill, ranked direct insertion sort, heap sort.
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1284281
    • 提供者:马全
  1. 5 sort algorithms.txt

    0下载:
  2. 5 sort routins: Simple Selection Sort, HEAPSORT Insertion Sort, Hill sort, Bubble Sort, Quick sort
  3. 所属分类:数据结构常用算法

  1. sort.rar

    0下载:
  2. 此代码可以生成一系列随机数,然后对这些随机数进行快速排序。,This code can generate a series of random numbers, and then the number of these random quick sort.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-01
    • 文件大小:140861
    • 提供者:汪帮主
  1. 01-backpack--quick-sort-algorithm

    0下载:
  2. 本文档涉及01背包,快速排序,归并排序,单源点最短路径等算法-This document covers 01 backpack, quick sort, merge sort, single-source shortest path algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-19
    • 文件大小:2269
    • 提供者:mick zhang
  1. quick-sort

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

    • 发布日期:2017-12-07
    • 文件大小:34302
    • 提供者:Pis_Ksss
  1. Quick-sort-doubly-linked-list

    0下载:
  2. 双向链表快速排序-Quick sort doubly linked list
  3. 所属分类:Embeded Linux

    • 发布日期:2017-11-21
    • 文件大小:2381
    • 提供者:Annabelle
  1. quick-sort

    0下载:
  2. 用随机法实现快速排序,这是自己写的程序源代码,希望能帮助到需要的人。-Random method to achieve quick sort, which is to write the program source code, hoping to help people in need.
  3. 所属分类:Console

    • 发布日期:2017-04-02
    • 文件大小:740
    • 提供者:郭健
  1. Quick-Sort

    0下载:
  2. 用快速排序的算法实现的排序功能的程序,里面进行的快速排序算法与递归的融合,是算法中的经典-Quick Sort algorithm using the sort function procedures, which carry out fast sorting algorithm with recursive fusion algorithm is a classic
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-04
    • 文件大小:4032
    • 提供者:wanglisa
  1. binary tree,Quick sort, Heap Sort

    0下载:
  2. binary tree,Quick sort, Heap Sort C programs
  3. 所属分类:TreeView控件

    • 发布日期:2014-02-15
    • 文件大小:3954
    • 提供者:ajaybhardwaj89
  1. With-partition-method-of-quick-sort

    0下载:
  2. 快速排序的主要思想:找出数组的第一个数字作为参照物,从数组第一个数字往后开始比较,同时,从数组最后一个数字往前比较,如果前面的数字比参照值大,找出来,后面的数字比参照值小找出来,他们相互交换位置,当他们相遇了,停止。这样的结果是,相遇点的前面的数字都是比参照值小的,相遇点后面的值都是比参照值大,然后再相遇点分割成两块,各自进行刚才的操作。-The main idea of the quick sort: find the first number as a reference, the arra
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:11490
    • 提供者:zhongdecai
  1. quick-sort

    0下载:
  2. 基本排序算法,快速排序的c语言版本,适合新手学习。-Basic sorting algorithm, quick sort c language version, suitable for beginners to learn.
  3. 所属分类:Console

    • 发布日期:2017-03-31
    • 文件大小:461357
    • 提供者:钱立祥
  1. random-quick-sort

    0下载:
  2. 本程序是数据结构中随机快速排序的实现,该算法能在较短的时间复杂度中实现排序。-This program is a data structure in random quick sort of realization, the algorithm can achieve the sort of complexity in a short time in.
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:760
    • 提供者:
  1. quick-sort-and-random-quick-sort

    0下载:
  2. 实现了普通快速排序和随机快速排序,快速排序采用《算法导论》第三版中给出的算法实现。-To achieve a common fast sort and random quick sort, quick sort using the algorithm Introduction in the third edition of the algorithm is given.
  3. 所属分类:Data structs

    • 发布日期:2017-05-11
    • 文件大小:2437625
    • 提供者:七月飞霜
  1. Data-structure-quick-sort

    0下载:
  2. 数据结构快速排序的一个小程序示范 数据结构快速排序的一个小程序示范-Data structure quick sort Data structure quick sort Data structure quick sort
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-30
    • 文件大小:11843
    • 提供者:王爽
  1. quick-sort

    0下载:
  2. 利用分治法实现一组数据的快速排序,使其排序时间缩短,并采用c语言编程-Using divide and conquer method to achieve quick sort a set of data, the sorting time is shortened, and the use of C language programming
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-12
    • 文件大小:575
    • 提供者:李想
  1. 1Source-free-Quick-Sort-in-c-plus-plus

    0下载:
  2. Source-free-Quick-Sort-in-c-plus-plus Hi dear users website source code here to download the source code fast sorting method. We hope that s helpful.
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-17
    • 文件大小:14336
    • 提供者:reza
  1. quick

    0下载:
  2. 通过Java实现用快速排序并附带algs4包,他是一个很有用的例子(Through the Java implementation with a quick sort and with algs4 package, he is a very useful example)
  3. 所属分类:数据结构

    • 发布日期:2017-12-19
    • 文件大小:545792
    • 提供者:方式方法
  1. HoarSort

    0下载:
  2. The program realizes Quick sort (Hoar sort) in C# console application.
  3. 所属分类:C#编程

    • 发布日期:2018-01-10
    • 文件大小:27648
    • 提供者:LuckyStrike93
« 1 2 34 5 6 7 8 9 10 ... 50 »
搜珍网 www.dssz.com