搜索资源列表
vc(QUEUE).rar
- 封装完善的C++队列类,可用在串口通讯、网络通讯上等等,Complete package C++ queue class, can be used in serial communications, network communications, etc.
Queue
- 队列管理封装类,包括mutex锁, 先进先出的功能-Queue management package categories, including mutex locks, the function of FIFO
list-and-Queue-template
- 自己封装的队列和链表模板类,使用方便!使用VC++开发工具.-Package their own queue and linked list template class, easy to use! Using VC++ development tools.
vcFileupload
- 这是CTransferSocket_hawk的类实现文件,以下成员变量用于数据发送:数据缓存区,为一个先入先出队列,注意:队列中的数据比原始数据多4+BEGIN_TAG_LENGTH个字节,其中前4个字节用来存放原始数据的长度,接下来存放BEGIN_TAG.远程端需要长度来确定将要接收的数据块尺寸,并利用BEGIN_TAG,来判断是否有错误发生。-This is CTransferSocket_hawk class implementation file, the following membe
softhy153I
- 这是CTransferSocket_hawk的类实现文件,以下成员变量用于数据发送:数据缓存区,为一个先入先出队列,注意:队列中的数据比原始数据多4+BEGIN_TAG_LENGTH个字节,其中前4个字节用来存放原始数据的长度,接下来存放BEGIN_TAG.远程端需要长度来确定将要接收的数据块尺寸,并利用BEGIN_TAG,来判断是否有错误发生。-This is CTransferSocket_hawk class implementation file, the following membe
QueueDemo_20100202
- 使用VC2008写的一个很实用的队列类和完整的测试例子程序,通过两个线程来操作该队列,一个线程负责入队操作,另一个线程负责出队操作-Use VC2008 to write a very useful test queue class and complete examples of procedures to operate the two threads through the queue, one thread is responsible for operations into the t
queue
- 队列使用,能够从中学会队列的技巧,包含了模板类的应用,一个有趣的小例子开始-queue example, you can learn some skill from the example.
6.5
- 实现贝努里队列类 归并函数在明确森林规模和root指针是否存在的情况下,利用carry指针对其进行归并操作-Realize the Indian embassy of queue
queue
- 这一个我自己写的队列类,以缓冲区为接口,适用于大数据量进出队列操作,缺点是其内部自分配一连续内存空间,而不是以链表模式编写,队列最大长度无法改变。-The queue class, I wrote it myself in order to buffer the interface, out of the queue operations for the large amount of data, the disadvantage is that since its internal alloc
group-class
- 了解链表类的定义与实现,学习其使用方法; 了解栈类的定义与实现,学习其使用方法; 了解队列类的定义与实现,学习其使用方法;了解C++标准模版库STL的使用方法。 -Understand the definition and implementation of linked list class, to learn their use understand the definition and implementation of the stack class, learning t
09_Case-Study
- 用链表类来实现 堆栈 和队列 很好用的 真的-You can use this PPT to study how to use Arraylist class to finish Quene and other something.Thank you very much
clsArray
- VB里面没有类似C++的队列的类,本源码在VB上实现了一个动态数组,可以自由添加数组元素,获取数组成员个数-VB there is no class of similar C++ queue, this source code in VB to achieve a dynamic array, the array elements can freely add, for the number of array members
FProducerResumerQueue
- 1.可以设置队列中的最大长度; 2.线程安全; 3.多线程想向队列中放入数据时,可设置等待队列有空位的超时时间,当有空位时,等待线程会被唤醒并将数据加入队列。函数原型为:FTLThreadWaitType Append(const ELEMENT& element, DWORD dwTimeOut). 4.多线程从队列中取出数据时,可设置等待队列有数据的超时时间, 当有数据时等待线程会被唤醒。函数原型为:FTLThreadWaitType Remove(ELEMEN
3-28
- 建立一个继承结构,以栈、队列、优先级队列作为派生类,建立它们的抽象基类Bag。统一命名派生类的插入操作Add,删除操作Remove,存取操作Get和Put,初始化操作MakeEmpty,判空操作isEmpty,判满操作isFull,计数操作Length。-Establish an inheritance structure to stacks, queues, priority queues as a derived class, to establish their abstract base
Classical-algorithm-exercises
- 经典算法练习,包含队列,栈,指针链表,模板类,模板函数的练习,-Classical algorithm exercises, including queues, stacks, pointer list, template class template function of practice,
CPPexam9
- 1. 编写程序 Node.h 实现例 9-5 的节点类,并编写测试程序 lab9_1.cpp 实现链表的基本操作。 2. 编写程序 link.h 实现例 9-6 的链表类。在测试程序 lab9_2.cpp 中声明两个整型链表 A和 B,分别插入 5 个元素,然后把 B 中的元素加入 A 的尾部。 3. 编写程序 queue.h,用链表实现队列(或栈)类。在测试程序 lab9_3.cpp 中声明一个 整型队列(或栈)对象,插入 5 个整数,压入队列(或栈),再依次取出并显示出来。 -1
CPPexam9
- 1. 声明 Point 类,有坐标_x,_y 两个成员变量;对 Point 类重载“++”(自增)、“--”(自减)运算符,实现对坐标值的改变。 2. 声明一个车(vehicle)基类,有 Run、Stop 等成员函数,由此派生出自行车(bicycle)类、汽车(motorcar)类,从 bicycle 和 motorcar 派生出摩托车(motorcycle)类,它们都有 Run、Stop 等成员函数。观察虚函数的作用。 1. 编写程序 Node.h 实现例 9-5 的节点类,并编写测
CPPexam10
- 1. 使用 C++标准模板库(STL)中的双向队列类(deque)重新实现实验九中实验任务2。 2. 声明一个整型数组,使用 C++标准模板库(STL)中的查找算法 find()进行数据的查找,然后应用排序算法Sort(),并配合使用标准函数对象Greater<T>对数据进行升序和降序排序。 -1 Use C++ Standard Template Library (STL) in the two-way queue class (deque) reimplement exp
ATM
- 自己实现的一个队列类,并用该类对银行ATM业务的排队问题进行仿真-A queue class implemented by myself, and is used to simulate the queuing problem of the ATM business
3ferry
- 某汽车轮渡口,过江渡船每次能载 10 辆车过江。过江车辆分别为客车类和 货车类,上船有如下规定:同类车先到先上船,客车先于货车上渡船,且每上 4 辆客车,才允许上一辆货车;若等待客车不足4辆则以货车代替;若无货车等待则允许客车都上船。(A car ferry ferry, river crossing boat, each time you can carry 10 vehicles across the river. The vehicles passing through the rive