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

搜索资源列表

  1. Keyframe

    1下载:
  2. 从视频中提取关键帧,采用贪心算法和堆排序来处理视频中的大量帧信息。-Extracted from the video key frame, the use of greedy algorithm and HEAPSORT to deal with a large number of frames of video information.
  3. 所属分类:mpeg mp3

    • 发布日期:2015-10-30
    • 文件大小:267147
    • 提供者:wpc
  1. dui

    1下载:
  2. 用MFC做的堆排序小程序,输入数字后后能出现大顶堆和小顶堆,用树控件显示-Heap sort using MFC to do a small program, enter the figures after the big top to the top of the heap and a small heap, with the tree control displays
  3. 所属分类:Other windows programs

    • 发布日期:2016-07-20
    • 文件大小:2372608
    • 提供者:tomo
  1. 5_sort

    0下载:
  2. 各种排序算法例程:简单选择排序;堆排序;插入排序;希尔排序;冒泡排序;快速排序;-Various sorting algorithm routines: Simple Selection Sort HEAPSORT Insertion Sort Hill sort Bubble Sort quick sort
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-11
    • 文件大小:1547
    • 提供者:陈巍卿
  1. heapsort

    0下载:
  2. 堆排序适合于待排序文件中记录较多的情况,因为其主要的时间开销在于建堆和调整堆-HEAPSORT be suitable for sorting paper records more, because the main overhead is the time to build reactors and adjusting the heap
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-28
    • 文件大小:864
    • 提供者:hjs
  1. sort

    0下载:
  2. 数据结构上让我们编写的排序算法,有冒泡,堆排序等-Data structure so that we prepared on sorting algorithms, there are bubble, heap sort, etc.
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:1561333
    • 提供者:Decell Hoo
  1. heapsort

    0下载:
  2. 从最后一个非叶子结点开始从后往前进行调整,保证了根下的所有子树都是最大堆,最后对根进行调整,使整棵二叉树为最大堆,保证了根结点为整棵数的最大值点,完成了建堆的过程,再将根结点跟最后一个结点进行交换,如此反复操作,则堆排序就完成了,其中堆排序的过程采用了满二叉树的概念。-From the final of a non-leaf node after the move began to be adjusted to ensure that the root of all sub-tree are t
  3. 所属分类:Data structs

    • 发布日期:2017-03-26
    • 文件大小:871
    • 提供者:溺所至
  1. sort

    0下载:
  2. 能够实现起泡法,二分法,堆排序,插入排序,选择排序,快速排序六种方法对100个数进行排序的时间空间复杂度进行比较-To achieve foaming method, dichotomy, Heap Sort, Insertion Sort, Selection Sort, Quick Sort six methods on 100 the number of sort of time and space complexity comparison
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-23
    • 文件大小:7239
    • 提供者:小海
  1. sort

    0下载:
  2. 自己编写的排序算法的代码,有桶排序,计数排序,基数排序,归并排序,堆排序,插入排序,快速排序,选择排序。-Sorting algorithm I have written the code, there are barrels of sorting, counting sort, Radix Sort, Merge Sort, Heap Sort, Insertion Sort, Quick Sort, select Sort.
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:4154
    • 提供者:yiming
  1. paixu

    0下载:
  2. 数据结构用C语言实现的各种排序方法,有插入排序,堆排序,归并排序,快速排序,链式基数排序,冒泡排序,希尔排序,选择排序,折半排序。-Data structure using C language to achieve a variety of sequencing methods, have insertion sort, heap sort, merge sort, quicksort, chain base sort, Bubble Sort, Hill sort, select sort,
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:4722
    • 提供者:韩杰
  1. sort

    0下载:
  2. 通过一组相同的数据,对六种不同排序方法(冒泡排序、快速排序、直接插入排序、希尔排序、简单选择排序、堆排序、二路归并排序)的数据元素的比较和移动的次数做一个比较,并对结果作出简单分析-Through a group of the same data, sort of six different methods (bubble sort, quick sort, direct insertion sort, Hill sort, simple selection sort HEAPSORT, Roa
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:2096
    • 提供者:吕璐
  1. arithmetic

    4下载:
  2. 常用算法:链表的操作、队列的应用、堆栈的应用、串的应用、树的基本操作、冒泡排序、堆排序、归并排序、磁盘文件排序、顺序查找、二分查找、树的动态查找、二分法求解方程、牛顿迭代求解方程、弦截法求解方程、拉格朗日插值、最小二乘法拟合、辛普生数值积分、改进欧拉法、龙格-库塔算法、高斯消去法、正定矩阵求逆算法-Commonly used algorithms: List of operation, the queue of applications, the stack of applications, t
  3. 所属分类:Algorithm

    • 发布日期:2016-08-26
    • 文件大小:21928
    • 提供者:
  1. DivConquer

    0下载:
  2. 算法实验:1 分治法在数值问题中的应用 ——最近点对问题 2 减治法在组合问题中的应用——8枚硬币问题 3 变治法在排序问题中的应用——堆排序 4 动态规划法在图问题中的应用——全源最短路径问题 -Algorithm experiment: 1 divided numerical problems in the application- the nearest point to question 2 by governance problems in the applicati
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-26
    • 文件大小:24308
    • 提供者:邱名楷
  1. paixu

    0下载:
  2. 2008软件公司面试题:排序大全:简单选择排序、冒泡排序、选择排序、shell排序、快速排序、插入排序、堆排序(从小到大)、归并排序(利用递归)-2008 software companies face questions: Sort Guinness: simple choice to sort, bubble sort, select sort, shell sort, quick sort, insert sort HEAPSORT (from small to large), Mergi
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:9242
    • 提供者:chen
  1. 5428934

    0下载:
  2. 排序算法平均时间的比较,实现几种排序算法(selectionsort, insertionsort,bottomupsort,quicksort, 堆排序)-The average amount of time sorting algorithm of comparison, the realization of several sorting algorithm (selectionsort, insertionsort, bottomupsort, quicksort, HEAPSORT)
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2547
    • 提供者:丹丹
  1. ccs

    0下载:
  2. 弗洛伊德算法,堆排序的时间,主要由建立初始堆和反复重建堆这两部分的时间开销构成,它们均是通过调用Heapify实现的。 -Floyd algorithm, HEAPSORT time, mainly by the establishment of the initial stack and heap repeatedly reconstruction spending time in these two parts of composition, they are by calling H
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-02
    • 文件大小:1517
    • 提供者:刘鸿羽
  1. arragement

    0下载:
  2. 数据结构涉及到的所有排序算法,如基数排序,堆排序等-Data structures involved in all the sorting algorithm, such as base sequencing, etc. HEAPSORT
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:4140
    • 提供者:吴尘秋
  1. duipaixusuccess

    0下载:
  2. 实现了一种堆排序算法,堆排序利用了大根堆堆顶记录的关键字最大(或最小)这一特征,使得在当前无序区中选取最大(或最小)关键字的记录变得简单-The realization of a heap sort algorithm, HEAPSORT use of a large root piles Top keywords recorded the largest (or smallest) This feature, making the current disorder in the area, s
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-09
    • 文件大小:9179
    • 提供者:刘冠宇
  1. sort

    0下载:
  2. 对内部排序中常见的简单选择排序,堆排序等进行比较分析-Sort of internal common simple choice to sort, heap sort, such as a comparative analysis
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:8648
    • 提供者:戚佳
  1. report+of+Algorithm

    0下载:
  2. 算法设计的实验报告 包括Bottom-Up Merge Sorting算法、插入排序算法Heaps的创建堆、堆排序算法、按秩合并算法以及带路径压缩算法、实现查找第K小元素算法、实现快速排序算法、实现平面内最接近点对算法、实现最长公共子序列算法、实现矩阵链相乘算法、实现0/1背包问题算法、实现Dijistra’s算法、Prim算法、Kruskal算法、文件压缩算法-Experimental Algorithm Design Report including Bottom-Up Merge So
  3. 所属分类:Data structs

    • 发布日期:2017-03-22
    • 文件大小:28952
    • 提供者:苏宁
  1. rj070252

    0下载:
  2. 排序。。⑴直接插入排序; ⑵折半插入排序; ⑶冒泡排序; ⑷简单选择排序; ⑸快速排序; ⑹堆排序; ⑺归并排序。 -Sort. . ⑴ Direct Insertion Sort ⑵ half Insertion Sort ⑶ Bubble Sort ⑷ simple choice to sort ⑸ quicksort ⑹ HEAPSORT ⑺ merge sort.
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:710223
    • 提供者:万明星
« 1 2 ... 6 7 8 9 10 1112 13 14 15 16 ... 44 »
搜珍网 www.dssz.com