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

搜索资源列表

  1. Sort1

    0下载:
  2. 各种排序算法的比较,很全,快速、插入、堆等七种排序-many different kind of sort algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-18
    • 文件大小:10652719
    • 提供者:子轩
  1. quicksort

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

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

    0下载:
  2. 数据结构排序中的堆排序算法,时间复杂度为o(n),用顺序表实现-Radix sort
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-10
    • 文件大小:2171
    • 提供者:LSQ
  1. paopao

    0下载:
  2. 冒泡排序冒泡法排序:将待排序的元素看作是竖着排列的"气泡",较小的元素比较轻,从而要往上浮。在冒泡排序算法中我们要对这个"气泡"序列处理若干遍。所谓一遍处理,就是自底向上检查一遍这个序列,并时刻注意两个相邻的元素的顺序是否正确。如果发现两个相邻元素的顺序不对,即"轻"的元素在下面,就交换它们的位置。显然,处理一遍之后,"最轻"的元素就浮到了最高位置;处理二遍之后,"次轻"的元素就浮到了次高位置。在作第二遍处理时,由于最高位置上的元素已是"最轻"元素,所以不必检查。一般地,第i遍处理时,不必检查第
  3. 所属分类:Other systems

    • 发布日期:2017-11-06
    • 文件大小:194775
    • 提供者:siting
  1. fsdafasfsadfa

    0下载:
  2. 各种排序算法的C程序,经典集合,值得拥有-Various sorting algorithm of C procedures, the classic collection worth having
  3. 所属分类:Other windows programs

    • 发布日期:2017-12-05
    • 文件大小:2972
    • 提供者:吴伟
  1. paixu

    0下载:
  2. 各种排序算法的c语言实现,各种各样的小算法-Various sorting algorithm c language, a variety of small algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-23
    • 文件大小:3417
    • 提供者:李云
  1. Sort

    0下载:
  2. 常用的几种排序算法,采用C++实现,适合初学者学习。-sort algorithm
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-30
    • 文件大小:949
    • 提供者:sandara
  1. Recursive_Sort-for-50000Numbers

    0下载:
  2. 递归对50000个数据进行的排序算法,C++实现,Windows下面运行,一个值得参考的例子。-Recursive data on 50,000 sorting algorithm, C++ achieve, Windows running below.
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-26
    • 文件大小:5175
    • 提供者:tangletao
  1. all_sort

    0下载:
  2. 各种排序算法的集合,并且进行测试,是综合学习排序算法的好例子-the function to sort the array,it includes all kinds of methods
  3. 所属分类:Other windows programs

    • 发布日期:2017-11-18
    • 文件大小:1765
    • 提供者:肖伟
  1. text

    1下载:
  2. 给定N个顶点、E条边的图G,完成图的相关算法,具体要求如下: 1 完成图的创建方法,即从键盘或文件输入图的信息,建立图的邻接表或是邻接矩阵存储结构。 2 给出判定图的性质的算法,即能够判定图是否是有向图、无向图、有向无环图、连通图等。 3 根据输入的图的性质,实现以下算法(选择其中一两个): 如果图是有向无环图,则先实现图的某种遍历算法,在此基础上实现图的拓扑排序算法。 如果图是连通图,则求出图的最大生成树(不是最小生成树,参考讲授的方法),即得到的生成树权值之和最大
  3. 所属分类:Other windows programs

    • 发布日期:2014-05-03
    • 文件大小:3968000
    • 提供者:kuotier
  1. SortAlgorithms

    0下载:
  2. 七种排序算法实现,包括快排,归并,堆排序,冒泡排序等-Various sorting algorithms,it is very convenient for someone who want this resource
  3. 所属分类:Other systems

    • 发布日期:2017-11-19
    • 文件大小:5237334
    • 提供者:lee
  1. dir_sort

    0下载:
  2. c++实现快速排序算法,可应用与任意大小的数组,通过输出流,将结果打印在txt文本上-c++ fast sorting algorithm can be applied to any size of the array, the output stream will print text in txt
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:567
    • 提供者:xiaoxiang
  1. Cprogram.tar

    0下载:
  2. 冒泡排序算法,用c语言实现,最经典的排序算法,很多其他的排序算法基本都是这个改进的-Bubble sort algorithm, using c language, the most classic sorting algorithms, many other sorting algorithms are the basic improvements
  3. 所属分类:Other systems

    • 发布日期:2017-04-14
    • 文件大小:3353
    • 提供者:朱昴
  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
    • 文件大小:203159
    • 提供者:Guangge
  1. Sort

    0下载:
  2. 排序程序。基本包括了所有的排序算法,还有计时功能,功能很全!-Sort program. Includes all the basic sorting algorithm, as well as timing functions, features a very full!
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:4112
    • 提供者:Zheng
  1. shellpaixu

    0下载:
  2. 希尔排序(Shell Sort)是插入排序的一种。是针对直接插入排序算法的改进-双语对照查看希尔排序(Shell Sort)是插入排序的一种。是针对直接插入排序算法的改进。 Hill sorting (Shell Sort) is a kind of insertion sort. Is to improve the direct insertion sort algorithm.
  3. 所属分类:Other systems

    • 发布日期:2017-03-31
    • 文件大小:1314
    • 提供者:
  1. HeapSort

    0下载:
  2. 利用visual c++实现的堆排序算法-HeapSort algorithm whih visual c++
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:573198
    • 提供者:卫珍
  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. 19100323_1

    0下载:
  2. 各种排序算法的比较,希尔,归并,推排序,快速排序的时间测试,并将数据写入文档-The comparison of various sorting algorithms, hill, merge, push sort, quick sort of test time, and to write data into the document
  3. 所属分类:Other systems

    • 发布日期:2017-05-08
    • 文件大小:2009346
    • 提供者:vanbingqing
  1. nsga2

    0下载:
  2. 非支配排序算法。多目标优化的重要算法,通过交叉、变异,多次迭代产生最优解。-This system is based mainly on the development of a single-chip can accommodate 16 bed ward call system, and asked to complete in Proteus simulation testing. The system consists of upper and lower machine, the ma
  3. 所属分类:Other systems

    • 发布日期:2017-04-01
    • 文件大小:5738
    • 提供者:蒋小三
« 1 2 3 4 5 6 7 89 10 11 12 13 ... 24 »
搜珍网 www.dssz.com