c语言数据结构—队列

一.队列的概念及结构(先进先出)
 

队列:只允许在一端进行插入数据操作,在另一端进行删除数据操作的特殊线性表,队列具有先进先出FIFO(First In First Out) 入队列:进行插入操作的一端称为队尾 出队列:进行删除操作的一端称为队头.

(先进先出)的意思是:  先进来的数据,要先删除出去.

比如:

实现代码如下:

头文件:

#include<stdio.h>
#include<assert.h>
#include<stdlib.h>
#include<stdbool.h>
#define QDataType int
typedef struct QListNode
{
	struct QListNode* _next;
	QDataType _data;
}QNode;

// 队列的结构 
typedef struct Queue
{
	QNode* _front;
	QNode* _rear;
}Queue;

// 初始化队列 
void QueueInit(Queue* q);
// 队尾入队列 
void QueuePush(Queue* q, QDataType data);
// 队头出队列 
void QueuePop(Queue* q);
// 获取队列头部元素 
QDataType QueueFront(Queue* q);
// 获取队列队尾元素 
QDataType QueueBack(Queue* q);
// 获取队列中有效元素个数 
int QueueSize(Queue* q);
// 检测队列是否为空,如果为空返回非零结果,如果非空返回0 
int QueueEmpty(Queue* q);

// 销毁队列 
void QueueDestroy(Queue* q);

实现文件:

#include"QListNode.h"
void QueueInit(Queue* q)
{
	q->_front = NULL;
	q->_rear = NULL;
}

void QueuePush(Queue* q, QDataType data)
{
	QNode* Node = (QNode*)malloc(sizeof(QNode));
	if (Node == NULL)
	{
		perror("malloc fail");
		return;
	}
	if (q->_rear == NULL)
	{
		q->_front = q->_rear= Node;
		q->_rear->_data = data;
		q->_front->_next = NULL;
	}
	else {
		q->_rear->_next = Node;
		q->_rear = q->_rear->_next;
		q->_rear->_data = data;
		q->_rear->_next = NULL;
	}

}


void QueuePop(Queue* q)
{
	assert(q);
	QNode* cur = q->_front;
	if (q->_front->_next == NULL)
	{
		free(q->_front);
		q->_front = q->_rear = NULL;
		
	}
	else
	{
		q->_front = q->_front->_next;
		free(cur);
	}

}

QDataType QueueFront(Queue* q) 
{
	assert(q);
	return q->_front->_data;
}

QDataType QueueBack(Queue* q)
{
	assert(q);
	return q->_rear->_data;
}

int QueueSize(Queue* q)
{

	QNode* cur = q->_front;
	int count = 0;
	if (q->_rear == NULL)
	{
		return 0;
	}
	else {
		while (cur)
		{
			count++;
			cur = cur->_next;
		}
		return count;
	}
}

int QueueEmpty(Queue* q)
{
	if (q->_rear == NULL)
	{
		return 1;
	}
	else {
		return 0;
	}
}

void QueueDestroy(Queue* q)
{
	QNode* cur = q->_front;
	while (cur)
	{
		q->_front = q->_front->_next;
		free(cur);
		cur = q->_front;
	}
	q->_front = q->_rear = NULL;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值