-
c++链式队列的实现
c++链式队列的实现头文件如下:
typedef int Item;
typedef struct node * PNode;
typedef struct node
{
Item data;
PNode next;
}Node;
typedef struct
{
PNode front;
PNode rear;
int size;
}Queue;
/*构造一个空队列*/
Queue *InitQueue();
/*销毁一个队列*/
void DestroyQueue(Queue *pqueue);
/*清空一个队列*/
void ClearQueue(Queue *pqueue);
/*判断队列是否为空*/
int IsEmpty(Queue *pqueue);
/*返回队列大小*/
int GetSize(Queue *pqueue);
/*返回队头元素*/
PNode GetFront(Queue *pqueue,Item *pitem);
/*返回队尾元素*/
PNode GetRear(Queue *pqueue,Item *pitem);
/*将新元素入队*/
PNode EnQueue(Queue *pqueue,Item item);
/*队头元素出队*/
PNode DeQueue(Queue *pqueue,Item *pitem);
/*遍历队列并对各数据项调用visit函数*/
void QueueTraverse(Queue *pqueue,void (*visit)());
- 2023-09-04 20:50:03下载
- 积分:1
-
mysql 3.22源码
mysql 3.22源码-mysql 3.22 sources codes
- 2022-02-04 09:14:36下载
- 积分:1
-
VB为前台,SQL_SERVER为后台的关于宾馆的数据库编程
VB为前台,SQL_SERVER为后台的关于宾馆的数据库编程-prospects for VB, SQL_SERVER background on the hotel Database Programming
- 2022-03-14 22:29:19下载
- 积分:1
-
利用哈夫曼编码构造的完整的编/译码系统,包括初始化、编码、译码、显示等,并将其输出在文件中。...
利用哈夫曼编码构造的完整的编/译码系统,包括初始化、编码、译码、显示等,并将其输出在文件中。-The use of Huffman encoding the complete structure of the encoder/decoder system, including the initialization, encoding, decoding, display and output in the document.
- 2022-01-22 17:55:18下载
- 积分:1
-
网站内容管理系统
网站内容管理系统-Web content management system
- 2022-07-01 07:00:03下载
- 积分:1
-
POJ 1222己AC源代码,不信你可以试试.
POJ 1222己AC源代码,不信你可以试试.-POJ 1222 F AC source code, do not believe you can try.
- 2022-05-30 12:25:26下载
- 积分:1
-
单链表简单基数排序,关键字有三个,参与排序的关键字的值为0...
单链表简单基数排序,关键字有三个,参与排序的关键字的值为0-9之间的数-Simple single-chain base sequencing, there are three keywords to participate in the value of the keyword ranking for a number between 0-9
- 2022-07-12 16:24:08下载
- 积分:1
-
vb实现最短路径Dijkstra算法,很经典的算法。
vb实现最短路径Dijkstra算法,很经典的算法。-vb realize Dijkstra shortest path algorithm, it is the classic algorithms.
- 2022-07-06 18:38:36下载
- 积分:1
-
本源码为图书管理系统,实现了密码登陆管理,图书基本信息的录入、修改、删除、查询,读者基本信息的录入、修改、删除、查询,实现了自动从系统取得借书时间,自动生成还原...
本源码为图书管理系统,实现了密码登陆管理,图书基本信息的录入、修改、删除、查询,读者基本信息的录入、修改、删除、查询,实现了自动从系统取得借书时间,自动生成还原时间,和自动对超期信息的统计-source for the library management system and realized the landing password management, basic information on the book entry, modification, deletion, inquiries, readers basic information on the entry, modification, deletion, inquiries, and realized from the system automatically library, automatic generation reduction, and automatic extended to the statistical information
- 2023-08-03 13:25:04下载
- 积分:1
-
清华大学数据结构讲义
清华大学数据结构讲义-data structure lectures Tsinghua University
- 2022-12-08 13:40:03下载
- 积分:1