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

搜索资源列表

  1. Delphi_1016

    0下载:
  2. 《Delphi算法与数据结构》源码 Delphi开发人员Julian Bucknall从实用角度为广大程序员提供了有关使用算法和数据结构的一个详尽的介绍。Bucknall先从算法性能的讨论开始,涵盖了诸如数组、链表和二叉树等内容。这本书强调了查找算法(如顺序和二分查找),另外也重点介绍了排序算法(包括冒泡排序、插入排序、希尔排序、快速排序和堆排序),此外还提供了有关的优化技术。不仅如此,作者还介绍了散列和散列表、优先队列、状态机和正则表达式以及诸如哈夫曼和LZ77等数据压缩技术。 随附光
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:148649
    • 提供者:Bob
  1. MaxHeap

    0下载:
  2. 用堆实现优先队列-used Heap priority queue
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:40903
    • 提供者:邵宇
  1. zuidatuan.rar

    0下载:
  2. 使用优先队列分支限界法对单源最短路径问题求解,最小堆作为优先队列的存储结构 使用最小堆来存储活结点,解空间树是一个子集树,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
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:1986
    • 提供者:waterfly
  1. duanyuanzuiduan.rar

    0下载:
  2. 单源最短路径问题,分支限界法的优先队列解法,最小堆来存储活结点表,表示活结点优先队列,优先级是结点所对应的当前路长,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
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-01
    • 文件大小:3641
    • 提供者:waterfly
  1. heap

    0下载:
  2. 一个用堆实现的优先队列课程设计,包好有一个完整的课程设计文档和源码!-With the realization of a priority queue heap curriculum design, good to have a complete package of curriculum design documents and source code!
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:105349
    • 提供者:ringsd
  1. HeapSort

    0下载:
  2. 最大堆的生成、堆排序,以及一个简单的最大优先队列的实现。-The largest generation heap, heap sort, as well as a simple realization of the greatest priority queue.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-27
    • 文件大小:3960
    • 提供者:crazy
  1. STL_quene

    0下载:
  2. 用c++的STL实现大根堆和小根堆,实现相当方便简单,优先队列效率好-Large root heap and small root heap, quite simple priority queue efficiency c++ the STL
  3. 所属分类:Data structs

    • 发布日期:2017-11-02
    • 文件大小:750
    • 提供者:朱铖恺
  1. 218

    0下载:
  2. 大顶堆实现一个优先队列。对于队列的操作应该至少支持下列几种指令: 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
  3. 所属分类:Other systems

    • 发布日期:2017-04-28
    • 文件大小:9287
    • 提供者:yiwen
  1. 9PriorityQueue

    0下载:
  2. 数据结构:优先队列(最大堆、最大左高树)最大左高树的初始化使用了数组描述的队列-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
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2850
    • 提供者:Robin.Wang
  1. BestFirstSearch_HeapAlgo

    0下载:
  2. 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
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:1926
    • 提供者:zelda
  1. pqueue

    0下载:
  2. pqueue 很方便使用的優先串列, 用堆疊作的, 可以在即時系統還是陷入式系統使用- This file contains routines implementing a priority queue. The priority queue is implemented as a heap. The larger value, the higher priority.
  3. 所属分类:Embeded-SCM Develop

    • 发布日期:2017-04-02
    • 文件大小:2526
    • 提供者:kenpar
  1. shiyanqi

    0下载:
  2. ? 假设某医生看病人的顺序是由病人的病情严重程度来决定。护士按照所有病人来医院的时间顺序给病人编号ID,依次为1,2,3,…,n;并且根据病人的病情严重程度设置Priority值,病越重,Priority的值越小。当医生开始工作时,护士根据病人的Priority值,由小到大依次安排病人看病。试为护士编写程序安排病人看病的先后次序利用最小值堆实现一个优先队列。- Using the minimum heap to implement a priority queue.
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:1256
    • 提供者:wuting
  1. Priority

    0下载:
  2. Priority Queue. Simple but effective. Implemented with heap.
  3. 所属分类:Other systems

    • 发布日期:2017-03-26
    • 文件大小:1533
    • 提供者:Latkin
  1. dijkstra

    0下载:
  2. 实现的是所有边权为正的最短路径算法的Dijkstra和优先队列Dijstra堆算法-The right of all sides to achieve a positive Dijkstra shortest path algorithm and the priority queue heap algorithm Dijstra
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:1110
    • 提供者:张佳静
  1. duilie

    0下载:
  2. 最小值堆实现一个优先队列.利用优先队列存入所有病人的信息(编号和病情严重程度)。最后利用优先队列获得病人看病的次序。 -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
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-28
    • 文件大小:1333
    • 提供者:伍艳权
  1. Archive

    0下载:
  2. A simple priority queue, array priority queue, and a binary heap. Used for implementation with databases written in java.
  3. 所属分类:Other Databases

    • 发布日期:2017-03-30
    • 文件大小:3806
    • 提供者:ptf4u07
  1. HEAP

    0下载:
  2. 大顶堆及优先队列的完整实现,包括插入、改变、抽出元素的实现以及实现堆排序。-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.
  3. 所属分类:Java Develop

    • 发布日期:2017-04-04
    • 文件大小:882
    • 提供者:李天喜
  1. priority-queue

    0下载:
  2. 利用堆实现优先队列的初始化,查找,插入,删除操作-Initialize heap implementation of priority queues, search, insert and delete operations
  3. 所属分类:Windows Develop

    • 发布日期:2017-11-16
    • 文件大小:1130
    • 提供者:陈天明
  1. Maximum-priority-queue

    0下载:
  2. 最大优先队列是基于堆的思想来实现的,相应的插入、删除、以及对优先队列的维护都是通过堆的思想来实现的-Maximum priority queue is a heap-based thinking to achieve, corresponding insertion, deletion, and maintenance for the priority queue heap ideas through to achieve
  3. 所属分类:Other systems

    • 发布日期:2017-03-29
    • 文件大小:1233
    • 提供者:Bingo
  1. priority-queue

    0下载:
  2. 使用循环队列创建最小和最大优先队列,并使用堆排序方法去排序。-Using the circular queue to create the min and max priority queue, and using heap sort method to sort the queue.
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:211755
    • 提供者:kid
« 12 »
搜珍网 www.dssz.com