C语言--队列的基本操作实现

队列

#include<stdio.h>
#include<stdlib.h>
typedef int type;
typedef struct Node {
 type data;
 struct Node* next;
}Node;
typedef struct Queue {
 struct Node* front;
 struct Node* rear;
}Queue;
//队列初始化
void QueueInit(Queue* p) {
 p->front = p->rear = NULL;
}

//创建新节点
struct Node* CreatNode(type x) {
 Node* new =(struct Node*)malloc(sizeof(struct Node));
 new->data = x;
 new->next = NULL;
 return new;
}

//队列入队,尾插
void QueuePush(Queue* p, type x) {
 Node* node = CreatNode(x);
 if (p->front == NULL) {
  p->front = p->rear = node;
 }else{
  p->rear->next = node;
  p->rear = node;
 }
}

//队列出队,头删
void QueuePop(Queue* p) {
 if (p->front == NULL) {
  return;
 }
 Node* next = p->front->next;
 free(p->front);
 p->front = next;
 if (p->front == NULL) {
  p->rear = NULL;
 }
}

//获取队头元素
type QueueFront(Queue* p) {
 return p->front->data;
}

//获取队尾元素
type QueueRear(Queue* p) {
 return p->rear->data;
}

//获得队列的长度
int QueueSize(Queue* p) {
 int num = 0;
 Node* cur = p->front;
 while (cur) {
  num++;
  cur = cur->next;
 }
 return num;
}

//判断队列是否为空
int QueueEmpty(Queue* p) {
 if (p->front == NULL) {
  return 1;
 }
 return 0;
}

//队列销毁
void QueueDes(Queue* p){
 Node* cur = p->front;
 while (cur) {
  cur->data = NULL;
  cur->next = NULL;
  free(cur);
  cur = cur->next;
 }
 p->front = NULL;
 p->rear = NULL;
}

int main() {
 Queue p;
 QueueInit(&p);
 //尾插12345
 QueuePush(&p, 1);
 QueuePush(&p, 2);
 QueuePush(&p, 3);
 QueuePush(&p, 4);
 QueuePush(&p, 5);

//获得头尾元素
 int a = QueueFront(&p);
 int b = QueueRear(&p);
 printf("front = %d , rear = %d\n", a, b);
//打印所有的元素惹
 while (QueueEmpty(&p) != 1) {
  printf("%d ", QueueFront(&p));
  QueuePop(&p);
 }
 printf("\n");
 return 0}
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值