当前位置:
首页
资源下载

搜索资源 - priority queue heap
搜索资源列表
-
0下载:
《Delphi算法与数据结构》源码
Delphi开发人员Julian Bucknall从实用角度为广大程序员提供了有关使用算法和数据结构的一个详尽的介绍。Bucknall先从算法性能的讨论开始,涵盖了诸如数组、链表和二叉树等内容。这本书强调了查找算法(如顺序和二分查找),另外也重点介绍了排序算法(包括冒泡排序、插入排序、希尔排序、快速排序和堆排序),此外还提供了有关的优化技术。不仅如此,作者还介绍了散列和散列表、优先队列、状态机和正则表达式以及诸如哈夫曼和LZ77等数据压缩技术。
随附光
-
-
0下载:
用堆实现优先队列-used Heap priority queue
-
-
0下载:
使用优先队列分支限界法对单源最短路径问题求解,最小堆作为优先队列的存储结构
使用最小堆来存储活结点,解空间树是一个子集树,Priority queue using branch and bound method of single-source shortest path problem solving, and the youngest heap as a priority queue to use the smallest heap storage structure to store s
-
-
0下载:
单源最短路径问题,分支限界法的优先队列解法,最小堆来存储活结点表,表示活结点优先队列,优先级是结点所对应的当前路长,Single-source shortest path problem, branch and bound method of the priority queue method, the smallest heap to store slipknot points table, said slipknot point priority queue, priority is the
-
-
0下载:
一个用堆实现的优先队列课程设计,包好有一个完整的课程设计文档和源码!-With the realization of a priority queue heap curriculum design, good to have a complete package of curriculum design documents and source code!
-
-
0下载:
最大堆的生成、堆排序,以及一个简单的最大优先队列的实现。-The largest generation heap, heap sort, as well as a simple realization of the greatest priority queue.
-
-
0下载:
用c++的STL实现大根堆和小根堆,实现相当方便简单,优先队列效率好-Large root heap and small root heap, quite simple priority queue efficiency c++ the STL
-
-
0下载:
大顶堆实现一个优先队列。对于队列的操作应该至少支持下列几种指令:
Void enqueue[int ObjectID, int Priority]
Int dequeue[]
Void changeweight[int ObjectID, int newPriority]
-Large Top Heap realize a priority queue. For the operation of the queue should be at least support
-
-
0下载:
数据结构:优先队列(最大堆、最大左高树)最大左高树的初始化使用了数组描述的队列-Data structure: priority queue (maximum heap, the largest left-high tree) to initialize the greatest left-high tree using the array described in the queue
-
-
0下载:
1. 此程式執行將從路徑讀取一個文字檔 ( 路徑:C:INPUT.TXT )
2. 執行結束會產生一個排序後的文字檔 ( 路徑:C:OUTPUT.TXT )
3. 給定的初始盤面一定有解
本程式採用的演算法策略為Best-first search with branch-and-bound algorithm
1. 使用Max heap 實作Priority queue
2. 使用bound function 估計目前盤面走至答案最少需要幾步
第一部分
所謂 h
-
-
0下载:
pqueue 很方便使用的優先串列, 用堆疊作的, 可以在即時系統還是陷入式系統使用- This file contains routines implementing a priority queue.
The priority queue is implemented as a heap. The larger value,
the higher priority.
-
-
0下载:
? 假设某医生看病人的顺序是由病人的病情严重程度来决定。护士按照所有病人来医院的时间顺序给病人编号ID,依次为1,2,3,…,n;并且根据病人的病情严重程度设置Priority值,病越重,Priority的值越小。当医生开始工作时,护士根据病人的Priority值,由小到大依次安排病人看病。试为护士编写程序安排病人看病的先后次序利用最小值堆实现一个优先队列。- Using the minimum heap to implement a priority queue.
-
-
0下载:
Priority Queue. Simple but effective. Implemented with heap.
-
-
0下载:
实现的是所有边权为正的最短路径算法的Dijkstra和优先队列Dijstra堆算法-The right of all sides to achieve a positive Dijkstra shortest path algorithm and the priority queue heap algorithm Dijstra
-
-
0下载:
最小值堆实现一个优先队列.利用优先队列存入所有病人的信息(编号和病情严重程度)。最后利用优先队列获得病人看病的次序。 -Minimum heap to implement a priority queue. Use the priority queue information stored in all patients (number and severity of the disease.) Finally, priority queue order to obtain the patien
-
-
0下载:
A simple priority queue, array priority queue, and a binary heap. Used for implementation with databases written in java.
-
-
0下载:
大顶堆及优先队列的完整实现,包括插入、改变、抽出元素的实现以及实现堆排序。-The big top of the heap and priority queue complete implementation, including insert, change, taking the elements of the implementation and realization of the heap sort.
-
-
0下载:
利用堆实现优先队列的初始化,查找,插入,删除操作-Initialize heap implementation of priority queues, search, insert and delete operations
-
-
0下载:
最大优先队列是基于堆的思想来实现的,相应的插入、删除、以及对优先队列的维护都是通过堆的思想来实现的-Maximum priority queue is a heap-based thinking to achieve, corresponding insertion, deletion, and maintenance for the priority queue heap ideas through to achieve
-
-
0下载:
使用循环队列创建最小和最大优先队列,并使用堆排序方法去排序。-Using the circular queue to create the min and max priority queue, and using heap sort method to sort the queue.
-