数据结构——栈和队列

【本节内容】
 

1.栈


1.1栈的概念及结构


栈:一种特殊的线性表,其只允许在固定的一端进行插入和删除元素操作。进行数据插入和删除操作的一端称为栈顶,另一端称为栈底。栈中的数据元素遵守后进先出LIFO(Last In First Out)的原则。
压栈:栈的插入操作叫做进栈/压栈/入栈,入数据在栈顶
出栈:栈的删除操作叫做出栈。出数据也在栈顶
 

1.2栈的实现


栈的实现一般可以使用数组或者链表实现,相对而言数组的结构实现更优一些。因为数组在尾上插入数据的代价比较小。
 

 

1.3栈的常见基本操作


STInit(ST* pst):初始化一个空栈pst。
bool STEmpty(ST* pst):判断一个栈是否为空,若栈为空则返回true,否则返回false。
STPush(ST* pst, STDataType x):进栈(栈的插入操作),若栈pst未满,则将x加入使之成为新栈顶。
STPop(ST* pst):出栈(栈的删除操作),若栈pst非空,则弹出栈顶元素。
STDataType STTop(ST* pst):读栈顶元素,若栈pst非空,则返回栈顶元素。
STDestroy(ST* pst):栈销毁,并释放pst占用的存储空间。

STSize(ST* pst):计算栈的大小,返回栈顶元素的位置

代码实现:

Stack.h:

#pragma once
#include<stdlib.h>
#include<assert.h>
#include<stdbool.h>
typedef int STDataType;
typedef struct Stack
{
	STDataType* a;
	int top;
	int capacity;
}ST;

void STInit(ST* pst);
void STDestroy(ST* pst);
void STPush(ST* pst, STDataType x);
void STPop(ST* pst);
STDataType STTop(ST* pst);
bool STEmpty(ST* pst);
int STSize(ST* pst);

Stack.c:

#define _CRT_SECURE_NO_WARNINGS 1
#include "Stack.h"
void STInit(ST* pst)
{
	assert(pst);
	pst->a = NULL;
	//pst->top = -1;   // top 指向栈顶数据
	pst->top = 0;   // top 指向栈顶数据的下一个位置
	pst->capacity = 0;
}

void STDestroy(ST* pst)
{
	assert(pst);
	free(pst->a);
	pst->a = NULL;
	pst->top = pst->capacity = 0;
}

void STPush(ST* pst, STDataType x)
{
	if (pst->top == pst->capacity)
	{
		int newCapacity = pst->capacity == 0 ? 4 : pst->capacity * 2;
		STDataType* tmp = (STDataType*)realloc(pst->a, newCapacity * sizeof(STDataType));
		if (tmp == NULL)
		{
			perror("realloc fail");
			return;
		}
		pst->a = tmp;
		pst->capacity = newCapacity;
	}
	pst->a[pst->top] = x;
	pst->top++;
}

void STPop(ST* pst)
{
	assert(pst);
	assert(!STEmpty(pst));
	pst->top--;
}

STDataType STTop(ST* pst)
{
	assert(pst);
	assert(!STEmpty(pst));
	return pst->a[pst->top - 1];
}

bool STEmpty(ST* pst)
{
	assert(pst);
	return pst->top == 0;
}

int STSize(ST* pst)
{
	assert(pst);
	return pst->top;
}

对于栈的各项功能,大家可以在主函数中自己进行测试,这边就不做过多的演示。

2.队列


2.1队列的概念及结构


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

2.2队列的实现


队列也可以数组和链表的结构实现,使用链表的结构实现更优一些,因为如果使用数组的结构,出队列在数组头上出数据,效率会比较低。
 

2.3队列的常见基本操作

 

QueueInit(Queue* pq):初始化队列,构造一个空队列pq。
QueueEmpty(Queue* pq):判队列空,若队列pq为空返回true,否则返回false。
QueuePush(Queue* pq, QDataType x):入队,若队列pq未满,将x加入,使之成为新的队尾。
QueuePop(Queue* pq):出队,若队列pq非空,删除队头元素。

QueueFront(Queue* pq):读队头元素,若队列pq非空,返回头部元素的数据。

QDataType QueueBack(Queue* pq):读出队尾元素,若队列pq为非空,返回队尾元素数据。

QueueSize(Queue* pq):计算队列大小,返回队列大小的值。

QueueDestroy(Queue* pq):销毁队列,释放队列的空间。

Queue.h:

#pragma once
#include<stdlib.h>
#include<assert.h>
#include<stdbool.h>
typedef int QDataType;
typedef struct QueueNode
{
	struct QueueNode* next;
	QDataType data;
}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);
int QueueSize(Queue* pq);
bool QueueEmpty(Queue* pq);

Queue.c:

#define _CRT_SECURE_NO_WARNINGS 1
#include"Queue.h"
void QueueInit(Queue* pq)
{
	assert(pq);

	pq->phead = NULL;
	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\n");
		return;
	}
	newnode->data = x;
	newnode->next = NULL;
	if (pq->ptail == NULL)
	{
		assert(pq->phead == NULL);
		pq->phead = pq->ptail = newnode;
	}
	else
	{
		pq->ptail->next = newnode;
		pq->ptail = newnode;
	}
	pq->size++;
}

void QueuePop(Queue* pq)
{
	assert(pq);
	assert(!QueueEmpty(pq));
	// 1、一个节点
	// 2、多个节点
	if (pq->phead->next == NULL)
	{
		free(pq->phead);
		pq->phead = pq->ptail = NULL;
	}
	else
	{
		// 头删
		QNode* next = pq->phead->next;
		free(pq->phead);
		pq->phead = next;
	}
	pq->size--;
}

QDataType QueueFront(Queue* pq)
{
	assert(pq);
	assert(!QueueEmpty(pq));
	return pq->phead->data;
}

QDataType QueueBack(Queue* pq)
{
	assert(pq);
	assert(!QueueEmpty(pq));
	return pq->ptail->data;
}

int QueueSize(Queue* pq)
{
	assert(pq);
	return pq->size;
}

bool QueueEmpty(Queue* pq)
{
	assert(pq);
	/*return pq->phead == NULL && pq->ptail == NULL;*/
	return pq->size == 0;
}

3.经典题

选择题:

 

解答:

 

编程题:

1. 括号匹配问题.OJ链接:20. 有效的括号 - 力扣(LeetCode)

代码:

typedef int STDataType;
typedef struct Stack
{
	STDataType* a;
	int top;
	int capacity;
}ST;
void STInit(ST* pst);
void STDestroy(ST* pst);
void STPush(ST* pst, STDataType x);
void STPop(ST* pst);
STDataType STTop(ST* pst);
bool STEmpty(ST* pst);
int STSize(ST* pst);
void STInit(ST* pst) 
{
    assert(pst);
    pst->a = NULL;
    pst->top = 0; // top指向栈顶的下一个位置
    pst->capacity = 0;
}
void STDestroyed(ST* pst) 
{
    assert(pst);
    free(pst->a);
    pst->a = NULL;
    pst->capacity = pst->top = 0;
}
void STPush(ST* pst, STDataType x) 
{
    if (pst->top == pst->capacity) 
    {
        int newCapacity = pst->capacity == 0 ? 4 : pst->capacity*2;
        STDataType* temp = (STDataType*)realloc(pst->a, newCapacity * sizeof(STDataType));
        if (temp == NULL) 
        {
            perror("relloc fail");
            return;
        }
        pst->a = temp;
        pst->capacity = newCapacity;
    }
    pst->a[pst->top] = x;
    pst->top++;
}
void STPop(ST* pst) 
{
    assert(pst);
    assert(!STEmpty(pst));
    pst->top--;
}
STDataType STTop(ST* pst) 
{
    assert(pst);
    assert(!STEmpty(pst));
    return pst->a[pst->top - 1];
}
bool STEmpty(ST* pst) 
{
    assert(pst);
    return pst->top == 0;
}
int STSize(ST* pst) 
{
    assert(pst);
    return pst->top;
}
bool isValid(char* s) 
{
    ST st;
    STInit(&st);
    while (*s) 
    {
        if (*s == '(' || *s == '[' || *s == '{') 
        {
            STPush(&st,*s);
        } 
        else 
        {
            if (STEmpty(&st)) 
            {
                STDestroyed(&st);
                return false;
            }
            char top = STTop(&st);
            STPop(&st);
            if ((*s == ')' && top != '(' )
            || (*s == ']' && top != '[')
            ||(*s == '}' && top != '{')) 
            {
                STDestroyed(&st);
                return false;
            }
        }
        s++;
    }
    bool ret = STEmpty(&st);
    STDestroyed(&st);
    return ret;
}

 

运行结果:

PS:看到这里了,码字不易,给个一键三连鼓励一下吧!有不足或者错误之处欢迎在评论区指出!   

 

  • 21
    点赞
  • 21
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值