加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Queue.c 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
luo 提交于 2022-01-20 12:40 . 队列
#include"Queue.h"
#include<stdio.h>
#include<malloc.h>
#include<assert.h>
QNode* buyQNode(QDataType data) {
QNode* newNode = (QNode*)malloc(sizeof(QNode));
if (newNode == NULL) {
assert(0);
return NULL;
}
newNode->data = data;
newNode->next = NULL;
return newNode;
}
void QueueInit(Queue* q) {
assert(q);
q->front = q->back = NULL;
q->size = 0;
}
void QueueDestroy(Queue* q) {
assert(q);
QNode* cur = q->front;
while (cur) {
q->front = cur->next;
free(cur);
cur = q->front;
}
q->back = NULL;
q->size = 0;
}
void QueuePush(Queue* q, QDataType data) {
assert(0);
QNode* newNode = buyQNode(data);
if (q->front == NULL) {
q->front = newNode;
}
else {
q->back->next = newNode;
}
q->back = newNode;
q->size++;
}
void QueuePop(Queue* q) {
if (QueueEmpty(q)) {
return;
}
else {
QNode* delNode = q->front;
q->front = delNode->next;
free(delNode);
if (q->front == NULL) {
q->back = NULL;
}
}
q->size--;
}
// 获取队头元素
QDataType QueueFront(Queue* q)
{
assert(!QueueEmpty(q));
return q->front->data;
}
// 获取队尾元素
QDataType QueueBack(Queue* q)
{
assert(!QueueEmpty(q));
return q->back->data;
}
// 获取队列中有效元素个数
int QueueSize(Queue* q)
{
assert(!QueueEmpty(q));
return q->size;
}
// 检测队列是否为空
int QueueEmpty(Queue* q)
{
assert(q);
return NULL == q->front;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化