搜索结果

找到约 38 项符合 heap 的查询结果

数据结构 選擇排序法的概念簡單

選擇排序法的概念簡單,每次從未排序部份選一最小值,插入已排序部份的後端,其時間主要花費於在整個未排序部份尋找最小值,如果能讓搜尋最小值的方式加快,選擇排序法的速率也就可以加快,Heap排序法讓搜尋的路徑由樹根至最後一個樹葉,而不是整個未排序部份,因而稱之為改良的選擇排序法。 ...
https://www.eeworm.com/dl/654/247432.html
下载: 55
查看: 1031

数值算法/人工智能 These tools are for use by developers so that they can create more robust applications. Especially o

These tools are for use by developers so that they can create more robust applications. Especially of use to those developing multi-threaded applications in C++ with templates. Includes TCMalloc, heap-checker, heap-profiler and cpu-profiler. http://www.soft234.com
https://www.eeworm.com/dl/518/271701.html
下载: 96
查看: 1055

教育系统应用 简易学生信息管理系统 程序实现思路: 先创建一个学生元素类

简易学生信息管理系统 程序实现思路: 先创建一个学生元素类,用于存放学生的各种数据。然后创建一个堆(heap)类,把数据以堆的形式存储,可便进行堆排序及各种操作。最后再用一个类(class priQueue)包装了heap类,以方便主函数调用。本程序中比较核心的技术就是用到了堆排序,将学生按优先级(高的排前面,低的排后面)的 ...
https://www.eeworm.com/dl/621/276344.html
下载: 32
查看: 1037

数值算法/人工智能 堆排序算法

堆排序算法,the heap sort algorithm
https://www.eeworm.com/dl/518/291785.html
下载: 81
查看: 1023

Linux/Unix编程 sourceforge历史版本完整下载: http://sourceforge.net/project/showfiles.php?group_id=202044 提供了基于b树索引算法的文件数据数据

sourceforge历史版本完整下载: http://sourceforge.net/project/showfiles.php?group_id=202044 提供了基于b树索引算法的文件数据数据库模块详见storage/目录下面的 btree.c与pager.c container目录为常用的容器实现,如果rbtree avltree map heap list vector hashtable deque T树 B树, test目录为测试程序代码经过初步测 ...
https://www.eeworm.com/dl/619/321110.html
下载: 134
查看: 1166

其他 最小生成树 MST的四种算法实现。 包括普通的Kruskal算法和Prim算法

最小生成树 MST的四种算法实现。 包括普通的Kruskal算法和Prim算法,用Disjoint-Set优化的Kruskal算法和用Heap优化的堆算法。 复杂度分别为O(mn), O(n^2), O(m log n), O(m log n)
https://www.eeworm.com/dl/534/435285.html
下载: 126
查看: 1025

数据结构 I implement Dijkstra s Single Source Shortest Path, say SSP, algorithm for directed graphs using a s

I implement Dijkstra s Single Source Shortest Path, say SSP, algorithm for directed graphs using a simple data structure, say simple scheme, Fibonacci heaps, say F-heap scheme, and Pairing heaps, say P-heap scheme, and measure the relative performance of the three implementations.
https://www.eeworm.com/dl/654/490559.html
下载: 35
查看: 1049

技术资料 在STM32F429I-Discovery上移植FATFS 0.13 最新版

1、下载FATFS R0.13a的源码2、将下载到的源码全部替代工程里面旧版FATFS, 四个源代码文件,其中 diskio.c 不要加入工程,因为其核心函数被加入了 usbh_msc_fatfs.c3、根据实际使用情况修改ffconf.h 里面的宏开关选项,与旧版不同的部分列出如下:#define FF_CODE_PAGE        936   // 简体 ...
https://www.eeworm.com/dl/838013.html
下载: 3
查看: 402