前言
说明:本篇博客的学习目标是:实现栈和队列的代码,实现分析请看数据结构上一篇博客。
链接: 上篇:栈和队列的实现分析
一、栈
Stack.h
头文件,结构体声明,函数声明
#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <stdbool.h>
#include <string.h>
typedef int STDataType;
typedef struct Stack
{
STDataType* data;
int top;
int capacity;
}Stack;
void StactInit(Stack* ps);
void StackDestroy(Stack* ps);
void StackPush(Stack* ps ,STDataType x);
void StackPop(Stack* ps);
STDataType StackTop(Stack* ps);
int StackSize(Stack* ps);
bool StackEmpty(Stack* ps);
Test.c
main函数和StackTest函数
#define _CRT_SECURE_NO_WARNINGS
#include "Stack.h"
void StackTest()
{
Stack s;
StactInit(&s);
StackPush(&s,1);
StackPush(&s, 2);
StackPush(&s, 3);
while (!StackEmpty(&s))
{
printf("%d ", StackTop(&s));
StackPop(&s);
}
printf("\n");
StackDestroy(&s);
}
int main()
{
StackTest();
return 0;
}
Stack.c
实现栈的各个功能
1、初始化和销毁
1.1、StackInit
#define _CRT_SECURE_NO_WARNINGS
#include "Stack.h"
void StactInit(Stack* ps)
{
assert(ps);
STDataType* tmp = (STDataType*)malloc(4 * sizeof(STDataType));
if (tmp == NULL)
{
printf("realloc fail\n");
exit(-1);
}
else
{
ps->data = tmp;
ps->capacity = 4;
ps->top = 0;
}
}
1.2、StackDestroy
void StackDestroy(Stack* ps)
{
assert(ps);
free(ps->data);
ps->data = NULL;
ps->capacity = ps->top = 0;
}
2、入栈、出栈
2.1、StackPush
void StackPush(Stack* ps, STDataType x)
{
assert(ps);
if (ps->capacity == ps->top)
{
STDataType* tmp = (STDataType*)realloc(ps->data, 2 * ps->capacity * sizeof(STDataType));
if (tmp == NULL)
{
printf("realloc fail\n");
exit(-1);
}
else
{
ps->data = tmp;
ps->capacity *= 2;
}
}
ps->data[ps->top] = x;
ps->top++;
}
2.2、StackPop
void StackPop(Stack* ps)
{
assert(ps);
assert(ps->top > 0);
ps->top--;
}
3、其它功能
3.1、StackTop
说明: 获取栈顶元素
STDataType StackTop(Stack* ps)
{
assert(ps);
assert(ps->top > 0);
return ps->data[ps->top - 1];
}
3.2、StackSize
说明:获取栈有效数据的个数
int StackSize(Stack* ps)
{
assert(ps);
return ps->top;
}
3.3、StackEmpty
说明: 判断栈是否为空
bool StackEmpty(Stack* ps)
{
assert(ps);
return ps->top == 0;
}
二、队列
Queue.h
头文件,结构体声明,函数声明
#pragma once
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <stdbool.h>
typedef int QDataType;
typedef struct QNode
{
QDataType data;
struct QNode* next;
}QNode;
typedef struct Queue
{
QNode* head;
QNode* tail;
}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);
int QueueSize(Queue* pq);
bool QueueEmpty(Queue* pq);
Test.c
main函数和QueueTest函数
#define _CRT_SECURE_NO_WARNINGS
#include "Queue.h"
void QueueTest()
{
Queue q;
QueueInit(&q);
QueuePush(&q, 3);
QueuePush(&q, 4);
QueuePush(&q, 5);
while (!QueueEmpty(&q))
{
printf("%d ", QueueFront(&q));
QueuePop(&q);
}
printf("\n");
QueueDestroy(&q);
}
int main()
{
QueueTest();
return 0;
}
Queue.c
队列各个功能的实现
1、初始化和销毁
1.1、QueueInit
#define _CRT_SECURE_NO_WARNINGS
#include "Queue.h"
void QueueInit(Queue* pq)
{
assert(pq);
pq->head = NULL;
pq->tail = NULL;
}
1.2、QueueDestroy
void QueueDestroy(Queue* pq)
{
assert(pq);
QNode* cur = pq->head;
while (cur != NULL)
{
QNode* next = cur->next;
free(cur);
cur = next;
}
pq->head = pq->tail = NULL;
}
2、队尾入队、队头出队
2.1、QueuePush
void QueuePush(Queue* pq, QDataType x)
{
assert(pq);
QNode* newnode = (QNode*)malloc(sizeof(QNode));
if (newnode == NULL)
{
printf("malloc fail\n");
exit(-1);
}
newnode->data = x;
newnode->next = NULL;
if (pq->head == NULL)
{
pq->head = pq->tail = newnode;
}
else
{
pq->tail->next = newnode;
pq->tail = newnode;
}
}
2.2、QueuePop
void QueuePop(Queue* pq)
{
assert(pq);
assert(pq->head);
if (pq->head->next == NULL)
{
free(pq->head);
pq->head = pq->tail = NULL;
}
else
{
QNode* next = pq->head->next;
free(pq->head);
pq->head = next;
}
}
3、其它功能
3.1、QueueFront
说明:获取队头元素
QDataType QueueFront(Queue* pq)
{
assert(pq);
assert(pq->head);
return pq->head->data;
}
3.2、QueueBack
说明:获取队尾元素
QDataType QueueBack(Queue* pq)
{
assert(pq);
assert(pq->head);
return pq->tail->data;
}
3.3、QueueSize
说明:获取有效数据的个数
int QueueSize(Queue* pq)
{
assert(pq);
int size = 0;
QNode* cur = pq->head;
while (cur != NULL)
{
size++;
cur = cur->next;
}
return size;
}
3.4、QueueEmpty
说明:判断队列是否为空
bool QueueEmpty(Queue* pq)
{
return pq->head == NULL;
}
|