【数据结构——队列的实现(单链表)】

数据结构------队列的实现(单链表)

一.队列

1.1队列的概念及结构

二.队列的实现

2.1 头文件的实现------(Queue.h)

c 复制代码
Queue.h
c 复制代码
#pragma once


#include<stdio.h>
#include<stdlib.h>
#include<stdbool.h>
#include<assert.h>

typedef int QDataType;
typedef struct QueueNode
{
	QDataType val;
	struct QueueNode* next;
}QNode;


typedef struct Queue
{
	QNode* phead;
	QNode* ptail;
	int size;
}Queue;

//初始化/销毁
void QueueInit(Queue* pq);
void QueueDestroy(Queue* pq);

//出队/入队
void QueuePush(Queue* pq, QDataType x);
void QueuePop(Queue* pq);
//获取队头元素/队尾元素
QDataType QueueFront(Queue* pq);
QDataType QueueBack(Queue* pq);
//判空/统计队列元素个数
bool QueueEmpty(Queue* pq);
int QueueSize(Queue* pq);

2.2 源文件的实现------ (Queue.c)

c 复制代码
Queue.c
c 复制代码
#include"Queue.h"


//初始化/销毁
void QueueInit(Queue* pq)
{
	assert(pq);
	pq->phead = pq->ptail = NULL;
	pq->size = 0;
}
void QueueDestroy(Queue* pq)
{
	assert(pq);
	QNode* cur = pq->phead;
	while (cur)
	{
		QNode* Next = cur->next;
		free(cur);
		cur = Next;
	}
	pq->phead = pq->ptail = NULL;
	pq->size = 0;
}

//队尾入队/队首出队
void QueuePush(Queue* pq, QDataType x)
{
	assert(pq);
	QNode* Newnode = (QNode*)malloc(sizeof(QNode));
	if (Newnode == NULL)
	{
		perror("malloc fail");
		return;
	}
	Newnode->val = x;
	Newnode->next = NULL;
	if (pq->phead == NULL)
	{
		pq->phead = pq->ptail = Newnode;
	}
	else
	{
		pq->ptail->next = Newnode;
		pq->ptail = pq->ptail->next;
	}
	pq->size++;
}
void QueuePop(Queue* pq)
{
	assert(pq);
	assert(pq->phead);
	QNode* del = pq->phead;
	pq->phead = pq->phead->next;
	free(del);
	del = NULL;

	if (pq->phead == NULL)
		pq->ptail = NULL;
	pq->size--;


}

//获取队头元素/队尾元素
QDataType QueueFront(Queue* pq)
{
	assert(pq);
	assert(pq->phead);

	return pq->phead->val;
}
QDataType QueueBack(Queue* pq)
{
	assert(pq);
	assert(pq->ptail);

	return pq->ptail->val;

}
//判空/统计队列元素个数
bool QueueEmpty(Queue* pq)
{
	assert(pq);
	return pq->phead == NULL;
}
int QueueSize(Queue* pq)
{
	assert(pq);

	return pq->size;
}

2.3 源文件的实现------ (test.c)

c 复制代码
test.c
c 复制代码
#include"Queue.h"


int main()
{
	Queue S;
	QueueInit(&S);
	QueuePush(&S, 1);
	QueuePush(&S, 2);
	printf("%d ", QueueFront(&S));
	QueuePop(&S);
	QueuePush(&S, 3);
	QueuePush(&S, 4);
	printf("%d ", QueueFront(&S));
	QueuePop(&S);
	QueuePush(&S, 5);

	while (!QueueEmpty(&S))
	{
		printf("%d ", QueueFront(&S));
		QueuePop(&S);
	}
	QueueDestroy(&S);
}

三.队列的实际数据测试展示

1.出入队列的方式:队尾进入,对首出队列。
2.出队列和入队列的关系是:一对一的。

3.1正常出队列入队列

3.2 入队列的同时存在出队列

相关推荐
pk_xz1234566 分钟前
使用Wikitext2数据集对Llama-7B和Llama3-8B模型进行50%权重剪枝的一般步骤和可能的实现方式
算法·llama·剪枝
C语言编程小刘 111 分钟前
C语言期末复习1.1
c语言·算法·leetcode
Bucai_不才26 分钟前
【C++】初识C++之C语言加入光荣的进化(下)
c语言·c++·面向对象编程
浊酒南街33 分钟前
决策树(理论知识3)
算法·决策树·机器学习
A懿轩A41 分钟前
C/C++ 数据结构与算法【哈夫曼树】 哈夫曼树详细解析【日常学习,考研必备】带图+详细代码
c语言·c++·学习·算法·哈夫曼树·王卓
思码逸研发效能1 小时前
在 DevOps 中,如何应对技术债务和系统复杂性,以确保可持续的研发效能和创新?
运维·算法·研发效能·devops·研发效能度量·效能度量
LuckyRich11 小时前
【贪心算法】贪心算法七
算法·贪心算法·哈希算法
HEU_firejef1 小时前
面试经典 150 题——数组/字符串(一)
数据结构·算法·面试
chenziang12 小时前
leetcode hot 全部子集
算法·leetcode·职场和发展
EdwardYange2 小时前
LeetCode 83 :删除排链表中的重复元素
数据结构·算法·leetcode·链表