代码拉取完成,页面将自动刷新
#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;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。