CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据结构常用算法 搜索资源 - 优先级队列

搜索资源列表

  1. youxianjiduilie

    0下载:
  2. 优先级队列类的实现,可作为头文件直接调用。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:1.34kb
    • 提供者:superred
  1. biaodashiqiuzhi

    0下载:
  2. 题目:设计一个题目,演示用算符优先法对算术表达式求值的过程。 概要设计 1、顺序扫描中缀算术表达式,当读到数字时直接将其送至输出队列中; 2、当读到运算符时,将栈中所有优先级高于或等于该运算符弹出,送至输出队列中,再将当前运算符入栈; 3、当读入左括号时,即入栈; 4、当读到右括号时,将靠近栈顶的第一个左括号上面的运算符全部一次弹出,送至输出队列中,再删除栈中的左括号。 5、使用VS栈来存储读入的操作和运算结果,然后进行数字字符到数值的转换。
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:6.2kb
    • 提供者:布瓜
  1. BOX

    6下载:
  2. 最少背包问题:假设有许多盒子,每个盒子能保存的总重量为1.0。有N个项i1,i2,…,iN,它们的重量分别是w1,w2,…,wN。目的是用尽可能少的盒子放入所有的项,任何盒子的重量不能超过他的容量。例如,如果想的重量为0.4, 0.4, 0.6和0.6,用两个盒子就能解决。 按如下策略解决此问题:按给定的次序扫描每一个项,把每一个项放入能够容纳他而不至于溢出的最满的盒子。用优先级队列选择要装入的盒子。-Minimum knapsack problem: Suppose there are m
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:1.84kb
    • 提供者:lijinping
  1. TsinghuaCdatastructures

    0下载:
  2. 清华+殷人昆C++数据结构 幻灯片教学课件 通过本课程的学习,应达到知识和技能两方面的目标: 1、知识方面:从数据结构的类定义和对象的使用,以及存储表示和操作的实现两个层次,系统地学习和掌握常用的基本数据结构(包括数组、顺序表、多项式、字符串、链表、栈与队列、优先级队列、广义表、树与森林、二叉树、堆、集合、图、搜索结构、索引结构、散列结构等)及其不同的实现,了解并掌握分析、比较和选择不同数据结构、不同存储结构、不同算法的原则和方法,为后续课程的学习打好基础。 -Tsinghua Q
  3. 所属分类:Data structs

    • 发布日期:2017-05-09
    • 文件大小:1.75mb
    • 提供者:ciweijsf
  1. data_structure3

    0下载:
  2. 9、优先级队列 QueueNode.h Compare.h PriorityQueue.h Test.cpp 10、串 88 MyString.h MyString.cpp test.cpp 11、二叉树 BinTreeNode.h BinaryTree.h Test.cpp 12、线索二叉树 ThreadNode.h ThreadTree.h ThreadInorderIterator.h te
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:5.42kb
    • 提供者:XS
  1. task

    0下载:
  2. 剪枝算法,优先级用优先级队列来实现,优先级越高越靠近队列开头放置-Pruning algorithm, priority queue with priority to achieve, the closer the higher priority queue placed at the beginning
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:10.56kb
    • 提供者:邱立富
  1. datastructures

    0下载:
  2. 各种数据结构的实现 包括顺序表、单链表、双向链表、循环链表、顺序栈、链式栈、顺序队列、链式队列、优先级队列、串、二叉树、线索二叉树、哈夫曼树、B+树、图的c++实现-Implementation of the various data structures, including order forms, a single linked list, doubly linked lists, circular list, the order of the stack, the stack chain
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:67.26kb
    • 提供者:ninja
  1. ch03_Stack_Queue

    0下载:
  2. 堆栈与递归、队列,优先级队列、双端队列等等。-ch03_Stack_Queue.rar
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:43.76kb
    • 提供者:李金光
  1. priorityQueue

    1下载:
  2. 利用二叉树实现的优先级队列类,包含了基本的入队,出队操作,减小键值等功能,可作为数据结构学习之用。-The priority queue class is implemented using binary tree. The fundamental function includes enqueue, dequeue, decrease key, etc.
  3. 所属分类:Data structs

    • 发布日期:2017-04-11
    • 文件大小:1.41kb
    • 提供者:梁清凯
  1. PriorityQueue

    0下载:
  2. 优先队列,设置优先级,使队列按照优先级出队-Priority queue, set priorities, make the team out in priority queue
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:64.26kb
    • 提供者:尹笑彬
  1. PQueue

    0下载:
  2. 优先级队列,输入一串数字,按从小到大排列。-PQUEUE input nums output nums inorder
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:205.78kb
    • 提供者:Ein Verne
  1. data-structure.tar

    0下载:
  2. 用C实现的常用数据结构集合,包括链表、堆栈、队列、位图、优先级队列、向量、堆等,对于初学数据结构是个相当不错的材料,都是自己亲自实现并测试的,各个数据结构的元素类型采用了通用类型(void *)-common data structures implemented using C language, including linked lists, stacks, queues, bit maps, priority queues, vector, stack, etc. A very good
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:9.7kb
    • 提供者:joey.zhao
  1. word1

    0下载:
  2. 1、设置多个就绪队列,并给队列赋予不同的优先级数,第一个最高,依次递减。 2、赋予各个队列中进程执行时间片的大小,优先级越高的队列,时间片越小。 3、当一个新进程进入内存后,首先将其放入一个对列末尾,如果在一个时间片 结束时尚未完成,将其转入第二队列末尾。 4、当一个进程从一个对列移至第n个队列后,便在第n个队列中采用时间片轮转执行完。 5、仅当时间片空闲时,才调度第二个队列中的进程。 -1, setting a plurality of the ready queue,
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:5.91kb
    • 提供者:frog
  1. 14.6

    0下载:
  2. 使用优先级队列类实现dijkstra算法。-Use priority queues class implements dijkstra algorithm.
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:44.85kb
    • 提供者:朱惠康
  1. 10-classical-algorithm-books

    0下载:
  2. 是不经典的算法书籍,包括《算法导论》,《信息检索:数据结构与算法》、《从数组到优先级队列》。以及其他书籍-10 classical algorithm, Including "Introduction to Algorithms", "Fundamentals of Data Structures", "Information Retrieval: Data Structures & Algorithms "And other classic books
  3. 所属分类:Data structs

    • 发布日期:2017-06-19
    • 文件大小:27.66mb
    • 提供者:林真神
  1. PriorityQueue

    0下载:
  2. 泛型化的优先级队列(最小堆),用C++实现 使用前应重载小于号 -Generic priority queue(the minimum heap) with C++ achieve
  3. 所属分类:Data structs

    • 发布日期:2017-11-30
    • 文件大小:1kb
    • 提供者:刘天元
  1. leastpackage

    0下载:
  2. 实现了最小背包问题的解决,利用优先级队列来解决-Achieve a minimum knapsack problem, the use of priority queues to resolve
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1.74kb
    • 提供者:stendardo
  1. src

    0下载:
  2. 利用java实现数据结构队列,循环队列,优先级队列,栈;自己编写的-Using Java implementation queue data structure, the circular queue, the priority queue, stack Write your own,
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:5.88kb
    • 提供者:dwm
  1. chartW

    0下载:
  2. 利用优先级队列求最短路径的算法实现,算法课上的一次作业,水平不高,仅供参考-Use the priority queue for the shortest path algorithm, the algorithm first lesson on the job, the level is not high, for reference
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:1.44kb
    • 提供者:falyyyy
  1. Astar_Romania

    0下载:
  2. 通过Astart算法了解对图结构、堆栈、队列、优先级队列等数据结构,并通过回溯过程解决罗马尼亚假日问题。问题内容是通过Astart算法,遍历所有节点(地点),寻找最短路径。-Astart algorithm to understand the structure of the map, stack, queue, priority queue and other data structures, and through the backtracking process to solve the
  3. 所属分类:Data structs

    • 发布日期:2017-05-05
    • 文件大小:188.85kb
    • 提供者:qjq
« 12 »
搜珍网 www.dssz.com