• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

promote-L

  • 博客园
  • 联系
  • 订阅
  • 管理

公告

View Post

队列的链式实现

 

#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;
}

 

posted on 2023-02-08 18:07  浪訫  阅读(24)  评论(0)    收藏  举报

刷新页面返回顶部
 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3