搜索资源列表
queue
- 数据结构第三章的题,是队列那一行的输入。-Data structure of the title of Chapter III is the queue line input.
Queue
- 数据结构中队列的函数操作,用 C语言编程,对数据结构学习很有帮助-A function of the queue data structure in operation, with C language programming, data structure learning helpful
Queue
- C数据结构 队列实现实例-C to achieve an instance of a queue data structure
duiliemoni
- 采用C语言编写的数据结构队列,并用队列模拟银行作业处理系统-Using C language data structure queue, and queue simulation of banking operations with the treatment system
Queue
- 数据结构队列,通过栈来实现的,内容简单 容易看明白 一学就会-Datastacture Queue
queue
- 数据结构--队列,实现出对、入队、取对等操作。-Data structure- the queue
Queue
- 本程序是C/C++的数据结构的有关队列的所有调试程序,经本人编写测试,正确无误。-The program queue is the C/C++ data structure debugger and after I write the test, correct.
stack-and-queue
- 数据结构举例程序,第四章栈和队列(内含6段程序)-Examples of data structures (containing 6 above procedures of the program, Chapter stack and queue)
stack-and-queue
- 数据结构中堆栈和队列的算法C语言实现,包括堆栈和队列的基本运算。-The stack and queue data structure algorithm C language
Queue
- 数据结构中的队列,可以实现先进先出的的功能-A queue data structure, the function can be realized FIFO
Defined-in-the-order-queue
- 数据结构中队列的顺序实现,包括入队列和出队列等-The order of the queue data structure implementation, including into the queues and the queues, etc.
queue
- 数据结构 队列 实现了以下功能: "---------------主菜单薄---------------"<<endl <<"* 1 初始化 *"<<endl <<"* 2 销毁 *"<<endl <<"* 3 清空 *"<<endl <<"* 4 判断空否 *"<<endl <<"* 5 队列长度 *"<<endl
Queue
- 数据结构 队列的简单操作 包括了队列初始化 入队(以随机数方式)操作,出队列操作,遍历输出 (不完全)-Data Structure. SqQueue
Circular-queue
- 对于数据结构中循环队列的功能实现,能更好的来理解数据结构的知识。-For the function of the circular queue data structure implementations, better able to understand the knowledge of the data structure.
queue
- 数据结构之循环队列的实现,及其相关基本操作-Implement circular queue data structures, and related basic operation
新建文本文档
- 一、循环队列的基础知识 1.循环队列需要几个参数来确定 循环队列需要2个参数,front和rear 2.循环队列各个参数的含义 (1)队列初始化时,front和rear值都为零; (2)当队列不为空时,front指向队列的第一个元素,rear指向队列最后一个元素的下一个位置; (3)当队列为空时,front与rear的值相等,但不一定为零; 3.循环队列入队的伪算法 (1)把值存在rear所在的位置; (2)rear=(rear+1)%maxsize ,其中maxsize代表数
park
- 解决停车问题, fifo队列的构建,排队问题(Solve the problem of parking, construction of FIFO queue and queuing problem)
链队列
- 数据结构,使用c++实现的链队列,简单实现没有bug,啦啦啦(Data structure, the use of c++ to implement the chain queue, simple implementation without bug, cheerleading)
DataStructure
- 数据结构的实验,包换栈,链表,队列,各种排序(Data structure experiments, packet replacement stack, linked list, queue, sorting.)
停车场
- 数据结构停车场代码,利用了链表,线性栈,链队列(Data structure car park code, the use of linked list, linear stack, chain queue)