搜索资源列表
sms_que
- 一个实现可以在进程间或者线程间通信的高效环形队列类,特别适用于那种生产者/消费者模型的应用中-an achievement in inter-process communication between threads or efficient circular queue category, particularly applicable to the kind of producer / consumer model of the application
cmoban
- 参照栈类模板的例子编写一个队列类模板class <T> Queue,私有成员包括:队首指针Front,队尾指针Tail,队列容积max。实现:构造函数Queue,析构函数,入队函数In,出队函数Out(每次出队,后面的元素自动前移一位),判队列空函数Empty。并分别用队列类模板定义int和float对象,调用各个成员函数-reference stack class template examples of the preparation of a class template cl
cqueue
- 一个简单的队列类,采用stl中的list实现
youxianjiduilie
- 优先级队列类的实现,可作为头文件直接调用。
LinQueue.h
- 数据结构(C++描述)链式队列类代码设计
msgQueueClass
- 一个多线程安全的消息队列类的实现,依赖于STL库-realization of message queue class in multi-thread enviroment
TsinghuaCdatastructures
- 清华+殷人昆C++数据结构 幻灯片教学课件 通过本课程的学习,应达到知识和技能两方面的目标: 1、知识方面:从数据结构的类定义和对象的使用,以及存储表示和操作的实现两个层次,系统地学习和掌握常用的基本数据结构(包括数组、顺序表、多项式、字符串、链表、栈与队列、优先级队列、广义表、树与森林、二叉树、堆、集合、图、搜索结构、索引结构、散列结构等)及其不同的实现,了解并掌握分析、比较和选择不同数据结构、不同存储结构、不同算法的原则和方法,为后续课程的学习打好基础。 -Tsinghua Q
EightCode
- 这个程序是实现人工智能中的A*算法,照着书上的算法做的。Queue类是自己写的一个队列类,用来实现open表和closed表。原来用Vector做的,但后来发现Vector中保存的只是引用,生成子状态后表中的状态也跟着变了,只好自己实现一个队列类。-This process is the realization of artificial intelligence in the A* algorithm, the algorithm follow the book to do. Queue is
STLQueue
- 线程安全队列实现,提高队列运行效率,采用模板类实现的,高效-Thread safe queue
queue
- ns2中一个队列类,描述队列是如何建立的- a queue model
ex7_10
- 本段代为顺序存储方式的循环队列类模板,介绍比较详细。-The section on behalf of the order of storage of the circular queue class template describes in more detail.
handout-files
- 实施第一类你必须使用一个链表来实现这些队列的方法,并队列增长到任何需要的大小。你执行第二类必须使用数组来实现这个队列类。该数组的大小应该是10,永远不会改变。 要实现第一个队列,你可以使用通用的节点类。第二个队列,必须使用一个固定大小的数组来实现。 您还必须建立一个主要的方法,使用户可以进入队列的字符串,获取和打印队列的头部(输入命令“poll”)的字符串,插入一个空值(命令“null ”),或退出程序(命令“quit”)。由用户输入的任何其他字符串应插入到队列中,通过调用该要约方法
backnap-and-large-number-
- 使用队列类解决背包问题 和使用线性表解决俄大数计算问题-Solve the knapsack problem using the queue class, and use the linear form of large numbers to solve computational problems Russia
SavingAccount
- 账户存储模拟 FIFO 类的深入剖析 设计实现一个用于存储整型数据的队列类-ACCOUNT ANALOG/FIFO
Delphi-Container-Library
- 常用的Delphi数据结构类库,包含哈希,链表,队列,堆栈等常用数据结构,好用,速度快.个人常用类库之一,并且修改原版中的部分Bug.全部源代码.-Commonly used Delphi data structures library, contains a hash, linked lists, queues, stacks, and other commonly used data structures, easy to use, fast. One of the frequently-u
priorityQueue
- 利用二叉树实现的优先级队列类,包含了基本的入队,出队操作,减小键值等功能,可作为数据结构学习之用。-The priority queue class is implemented using binary tree. The fundamental function includes enqueue, dequeue, decrease key, etc.
14.6
- 使用优先级队列类实现dijkstra算法。-Use priority queues class implements dijkstra algorithm.
binomialqueue
- 实现类伯努利队列类,具有其基本功能,能够添加、删除、显示-Implementation class Bernoulli queue class, with its basic functions, the ability to add, delete, display
link_queue
- 提供数据结构中的链队列类。队列的链接存储结构是用一个单链表存放队列元素的。压缩包中有测试文件。-Provide data structure chain queue class. Queue storage structure is linked with a single list of elements stored in the queue. Compressed package test files.
第一次实验课
- 定义单链表类、链式栈类、顺序队列类。 2、 实验验证如下算法的正确性、各种功能及指标: 1)单链表插入操作:在第 i 个元素之后插入值为 x 的结点; 2)单链表删除操作:删除表头结点、表尾结点; 3)查找操作:查找值为 x 的元素在单链表中出现的位置(是链表中的第几个元素); 4)压栈和弹栈操作; 5)出队和入队操作。(Define single chain table class, chain stack class, sequence queue class. 2. The