CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 排序算法的比较

搜索资源列表

  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
    • 文件大小:600
    • 提供者:zhangfei
  1. 20090614134824622

    0下载:
  2. 比较六种排序算法,其中包括快速排序,冒泡排序等内容的速度以及空间复杂度。-Comparison of the six sorting algorithms, including quicksort, bubble sort etc. the speed and space complexity.
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:13151
    • 提供者:荆楚国
  1. 2010XM

    0下载:
  2. 对各种排序算法进行性能的比较与选择,并给出总结,用java进行描述-The performance of various sorting algorithms comparison and choice, and gives summary descr iption using java
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-06
    • 文件大小:18064
    • 提供者:zzzhhh
  1. SortCmpCode

    0下载:
  2. 比较几种常见的排序算法:插入排序,快排,归并排序等。-compare several common sorting algorithms, such as inserting sort, quick sort, merge sort, etc.
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:36272
    • 提供者:luckypig
  1. sort

    0下载:
  2. C++各种排序的算法比较,各种算法的优劣-C++ Comparison of various sorting algorithms, each algorithm' s strengths and weaknesses ... ...
  3. 所属分类:Algorithm

    • 发布日期:2017-05-07
    • 文件大小:1979712
    • 提供者:tang
  1. SortCompare

    0下载:
  2. (1)待排序表的长度不小于100000;其中的数据用为随机数产生程序产生。 (2)从已学过的内部排序算法中选择至少5种算法,通过比较各种算法的关键字移动次数以及比较次数。至少用五组不同的输入数据作比较。 (3)最后对结果作出简单分析,包括对各组数据得出结果波动大小的解释。 -(1) length of the table to be sorted is not less than 100,000 one of the data used to generate the random
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:105015
    • 提供者:xiaojie
  1. SortAlgorithm

    0下载:
  2. Delphi实现的排序算法及效率比较,含:冒泡排序,插入排序和Shell排序。-Delphi to achieve the efficiency of sorting algorithms and more, including: bubble sort, insertion sort and Shell sort.
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:375166
    • 提供者:wu
  1. javasort

    0下载:
  2. (1)写一个final参数类M,包括比较次数、交换次数、探测次数属性,并重写构造器和toString方法。 (2)写一个抽象类A,其中包括要排序的数据。提供三个final方法,分别完成比较、探测、交换操作的同时,正确改变私有的M类对象成员的相关属性。并提供一个虚方法doSort,同时提供一个final方法sort(先设置M对象初值,然后调用doSort方法,返回M对象引用) (3)写三个采用不同方法排序的A类的派生类A1,A2,A3 (4)写一个测试类作为主类,分别生成A1,A2,A
  3. 所属分类:Java Develop

    • 发布日期:2017-03-31
    • 文件大小:468049
    • 提供者:陈新杰
  1. Quicksort

    0下载:
  2. 快速排序算法基本思想 通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整个数据变成有序序列。一般设置数组的第一个数为需要比较的值,把整个数组分为小于和大于该数的两部分。 我自己在写这个算法的时候,卡住了好几回,总是边界值出现问题。下面的这个实现加入了注释,希望对你能够有所帮助。-Basic idea of quick sort algorithm
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:5548
    • 提供者:郑阳
  1. paixu

    0下载:
  2. 程序可以使用七种排序算法,包括快速,希尔,推,简单选择等。对生成的随机数进行排列,并比较各种排序算法时间优劣-Program can use the seven ranking algorithms, including fast, Hill, push, simple choice. On the generated random numbers to be ranked, and compare the merits of time sorting algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:232670
    • 提供者:于洋
  1. paixu

    1下载:
  2. java排序的演示,比如快速排序,插入排序,选择排序,堆排序等的时间效率,算法复杂度的比较,输出各种排序所需的时间,对其进行比较-comperer
  3. 所属分类:Java Develop

    • 发布日期:2017-04-03
    • 文件大小:6661
    • 提供者:youyi
  1. Insertionsortofchaintoachieve

    0下载:
  2. 插入排序的链式实现,与传统的以比较为基础的排序算法相比,速度极快。-Insertion sort of chain to achieve, and to compare the traditional-based sorting algorithm, fast.
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:2975
    • 提供者:荒唐
  1. bubblesort

    0下载:
  2. 冒泡排序的算法,比较不错,有兴趣的可以下载下来看一下,不会失望的。-Bubble sort algorithm, more good, interested can download the next look will not be disappointed.
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1708
    • 提供者:寒浅
  1. zifuchuan

    0下载:
  2. C语言编程。采用了多种算法进行字符串排序,这样可以比较算法的好坏 快慢.-C language programming. Strings using a variety of sorting algorithms, so you can compare the speed of the algorithm is good or bad.
  3. 所属分类:Data structs

    • 发布日期:2017-04-09
    • 文件大小:2913
    • 提供者:袁昊
  1. Chap03

    0下载:
  2. 这是各种排序的的算法,选择,插入对于排序问题描叙的比较全面-This is all sort of algorithm, choice for the scheduling problem into a more comprehensive Miao Xu
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:9668
    • 提供者:yangai
  1. Test_Order

    0下载:
  2. 随机产生10万个数,采用各种排序算法,包括:气泡,插入,折半插入,希尔排序等算法进行排序。并比较各个排序的效率。原创-10 million randomly generated number, using a variety of sorting algorithms, including: bubble, insertion, binary insertion, Hill sorting algorithm to sort. And compare the efficiency of each
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:372503
    • 提供者:yangsong
  1. adhoc

    0下载:
  2. 经典的路由表协议有:DSDV(序列目的节点距离矢量路由协议),CGSR(群首信关切换路由协议),WRP(无线路由协议)等。经典的源始发的按需路由协议有:DSR(自适应源路由协议)、AODV(自组织网按需距离矢量路由协议),TORA(临时排序路由算法)等,这里实现Adhoc网络路由协议性能的比较-Classical routing table agreement: DSDV (destination sequence distance vector routing protocols), CGSR
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-05-16
    • 文件大小:4252743
    • 提供者:曲景峰
  1. ramsortcomparesourcecode

    0下载:
  2. 数据结构课程设计时完成的内排序效率比较的控制台程序,程序简易,包含了主要的内排序算法,排序后统计实际运行时间输出,其中包含的精确计时算法精度可以超过10ns 。-A console program for RAM sort , include main RAM sort algorithms, count their times and output. The high resolution timer can accurate to less than 10 ns.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:2048667
    • 提供者:
  1. algorithms

    0下载:
  2. 包含各种各样的,比较全的,排序算法。mfc版本!!!源码-All the sorting algorithms compare mfc version! ! ! Source!
  3. 所属分类:Data structs

    • 发布日期:2017-04-23
    • 文件大小:49271
    • 提供者:rexlc
  1. 2

    0下载:
  2. 内部排序算法比较实验指导书,(1)对以下6种常用的内部排序算法进行对比:直接插入排序;希尔排序;起泡排序;快速排序;简单选择排序;堆排序;-Comparison of the internal sorting algorithm experimental guide books (1) of the following six kinds of commonly used to compare the internal sorting algorithm: direct insertion so
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:1965
    • 提供者:goulin
« 1 2 ... 10 11 12 13 14 1516 17 18 19 20 21 22 »
搜珍网 www.dssz.com