队列的链式实现
#include<iostream>
using namespace std;
typedef int Elemtype;
typedef struct LinkNode
{
Elemtype data;
struct LinkNode* next;
}linkNode;
typedef struct
{
LinkNode* front, * rear;
}LinkQueue;
void initLinkQueue(LinkQueue& Q);
bool IsEmptyQueue(LinkQueue& Q);
void InLinkQueue(LinkQueue& Q, Elemtype x);
bool OutLinkQueue(LinkQueue& Q, Elemtype& x);
bool printQueue(LinkQueue& Q);
int main()
{
LinkQueue Q;
initLinkQueue( Q);
IsEmptyQueue(Q);
Elemtype x;
InLinkQueue(Q, 1);
InLinkQueue(Q, 2);
InLinkQueue(Q, 3);
InLinkQueue(Q, 4);
printQueue(Q);
OutLinkQueue(Q, x);
printQueue(Q);
system("pause");
return 0;
}
//初始化队列
void initLinkQueue(LinkQueue& Q)
{
Q.front = Q.rear = new LinkNode;
Q.front->next = NULL;
}
//判空
bool IsEmptyQueue(LinkQueue& Q)
{
if (Q.front == Q.rear)
return true;
else
return false;
}
//入队
void InLinkQueue(LinkQueue& Q, Elemtype x)
{
LinkNode* n = new LinkNode;
n->data = x;
n->next = NULL;
Q.rear->next = n;
Q.rear = n;
}
//出队
bool OutLinkQueue(LinkQueue& Q, Elemtype& x)
{
if (Q.rear == Q.front)
return false;
LinkNode* p = Q.front->next;
x = p->data;
Q.front->next = p->next;
if (Q.rear == p)
Q.rear = Q.front;
delete p;
p = NULL;
return true;
}
bool printQueue(LinkQueue& Q)
{
if (Q.front == Q.rear)
{
cout << "队列为空 " << endl;
return false;
}
LinkNode* p = Q.front->next;
while (p)
{
cout << p->data << " ";
p = p->next;
}
cout << endl;
return true;
}
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· C#/.NET/.NET Core优秀项目和框架2025年2月简报
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 【杭电多校比赛记录】2025“钉耙编程”中国大学生算法设计春季联赛(1)