CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 文档资料 软件工程 搜索资源 - 排序 比较

搜索资源列表

  1. 20044140604

    0下载:
  2. 因为不同的排序方法适应不同的应用环境和要求,所以选择合适的排序方法应综合考虑下列因素: ①待排序的记录数目n; ②记录的大小(规模); ③关键字的结构及其初始状态; ④对稳定性的要求; ⑤语言工具的条件; ⑥存储结构; ⑦时间和辅助空间复杂度等。 本程序对以下7种常用的内部排序算法进行实测比较:插入排序、希尔排序、起泡排序、快速排序、归并排序、选择排序、堆排序。我主要负责的是希尔排序和堆排序。
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:1.08mb
    • 提供者:haitty
  1. sort_compare

    0下载:
  2. 对以下5种常用的内部排序算法进行比较:起泡排序、直接插入排序、简单选择排序、快速排序、希尔排序
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:53.2kb
    • 提供者:清影摇风
  1. tuxiangpipei

    0下载:
  2. 在图像模板匹配问题中,基于像素灰度值的相关算法尽管已经十分普遍,并得到广泛的应用,但目前此类算法都还存在有时间复杂度高、对图像亮度与尺寸变化敏感等缺点.为了克服这些缺点,提出一种新的基于图像灰度值的编码表示方法.这种方法将图像分割为一定大小的方块(称为R-块),计算每个R-块图像的总灰度值,并根据它与相邻R-块灰度值的排序关系进行编码.然后通过各个R-块编码值的比较,实现图像与模板的匹配.新算法中各个R-块编码的计算十分简单 匹配过程只要对编码值进行相等比较,而且可以采用快速的比较算法.新算法对
  3. 所属分类:软件工程

    • 发布日期:2008-10-13
    • 文件大小:159.96kb
    • 提供者:曲晓彤
  1. sort

    0下载:
  2. 排序算法时间比较,排序性能比较,算法比较简单,但注重性能的比较-Spend more time sorting algorithm, sorting performance comparison, the algorithm is simple, but focus on comparative performance
  3. 所属分类:software engineering

    • 发布日期:2017-04-10
    • 文件大小:1.49kb
    • 提供者:zhoutong
  1. Data-structure

    0下载:
  2. 从抽象数据类型的角度讨论各种基本类型的数据结构和应用,讨论查找和排序的各种实现方法及综合分析比较-Abstract data types from the perspective of various basic types of data structures and applications, discuss various implementations of search and sorting methods and comprehensive analysis and compari
  3. 所属分类:software engineering

    • 发布日期:2017-05-24
    • 文件大小:7.49mb
    • 提供者:张艳娜
  1. bubble

    0下载:
  2. 一种快速排序主要是两两比较得出结果,可供参考-A quick sort is mainly the outcome of pairwise comparison, reference
  3. 所属分类:software engineering

    • 发布日期:2017-04-15
    • 文件大小:12.43kb
    • 提供者:王元达
  1. Laboratory-equipment-

    0下载:
  2. 进行实验室设备的添加,删除,查询,排序,采用dos界面,比较美观-Laboratory equipment management system of laboratory equipment to add, delete, inquires the, sort
  3. 所属分类:software engineering

    • 发布日期:2017-04-05
    • 文件大小:6.93kb
    • 提供者:史东飞
  1. C-language-lesson-set

    0下载:
  2. C语言课设,包含: 比较“冒泡排序”和“选择排序”两种排序方法的效率 比较两个文件是否雷同 处理简单的数据文件 创建“文件复制”的DOS命令 关联两个文件中的数据-C language lesson set, including: compare the efficiency of the bubble sort and select Sort two Sort method to compare two files are identical to handle simpl
  3. 所属分类:software engineering

    • 发布日期:2017-04-04
    • 文件大小:170.01kb
    • 提供者:王泽
  1. ccccc

    0下载:
  2. 对10个数进行排序 1.程序分析:可以利用选择法,即从后9个比较过程中,选择一个最小的与第一个元素交换,下次类推,即用第二个元素与后8个进行比较,并进行交换。 -10 the number of sort 1. Program analysis: using the selection method, i.e. from 9 months after the comparison process, select a minimum exchange with the first elem
  3. 所属分类:software engineering

    • 发布日期:2017-11-09
    • 文件大小:1.11kb
    • 提供者:uestclxh
  1. d

    0下载:
  2. 该文件包括了单链表的基本操作,比较 ,排序等-The document includes the basic operation of a single list, compare, sort, etc.
  3. 所属分类:software engineering

    • 发布日期:2017-11-21
    • 文件大小:441.41kb
    • 提供者:王娅
  1. QuickSort

    0下载:
  2. 快速排序之所比较快,因为相比冒泡排序,每次交换是跳跃式的。每次排序的时候设置一个基准点,将小于等于基准点的数全部放到基准点的左边,将大于等于基准点的数全部放到基准点的右边。这样在每次交换的时候就不会像冒泡排序一样每次只能在相邻的数之间进行交换,交换的距离就大的多了。因此总的比较和交换次数就少了,速度自然就提高了。-Quick sort of the relatively fast, as compared to bubble sort, each exchange is leaps and bo
  3. 所属分类:software engineering

    • 发布日期:2017-03-31
    • 文件大小:96.86kb
    • 提供者:单米马
  1. maopao

    0下载:
  2. 所谓冒泡排序,形象的说,就是在将一组数据从小到大的顺序排列时,小的数据视为质量较轻,大的数据视为质量较重,小的数据好比水中的气泡,往上方移动,较大的数据好比是石头,往下沉,最重的会沉到底,最轻的会浮到顶,反复进行比较,直到数据列排成有序列.-The bubbling program
  3. 所属分类:software engineering

    • 发布日期:2017-04-28
    • 文件大小:360.81kb
    • 提供者:sind
  1. eight-Sorting-Algorithm

    0下载:
  2. 程序中常见的排序算法的总结,便于各个算法的比较和分析。-Summary procedure common sorting algorithm, to facilitate comparison and analysis of various algorithms.
  3. 所属分类:software engineering

    • 发布日期:2017-04-24
    • 文件大小:9.1kb
    • 提供者:
  1. paixusuanfa

    0下载:
  2. 归纳总结快速排序,归并排序,堆排序以及基数排序算法的特点,实现算法并加以比较-Summarized quick sort, merge sort, heap sort and the characteristics of radix sort algorithm, algorithm and compare
  3. 所属分类:software engineering

    • 发布日期:2017-04-29
    • 文件大小:56.84kb
    • 提供者:文龙
  1. 实习报告书12.26

    0下载:
  2. 实现七种排序算法 比较各算法性能 数据结构算法 冒泡,插入,希尔,快速,选择,堆排序,归并排序(order algorithm sorting algorithm;Sort algorithm;PageRank algorithm bubble sort;bob sort method;Bubble sort algorithm Merge sort algorithm)
  3. 所属分类:系统设计方案

    • 发布日期:2017-12-19
    • 文件大小:439kb
    • 提供者:Boulder
搜珍网 www.dssz.com