C语言实现栈的示例详解

目录

前言

一. 什么是栈

二. 使用什么来实现栈

三. 栈的实现

3.1 头文件

3.2 函数实现

3.3 完整代码

四. 栈的用处

前言

前一段时间,我们试着用C语言实现了数据结构中的顺序表,单链表,双向循环链表。今天我们再用C语言来实现另一种特殊的线性结构:

一. 什么是栈

栈(stack)又名堆栈,它是一种运算受限的线性表。限定仅在表尾进行插入和删除操作的线性表。这一端被称为栈顶,相对地,把另一端称为栈底。向一个栈插入新元素又称作进栈、入栈或压栈,它是把新元素放到栈顶元素的上面,使之成为新的栈顶元素;从一个栈删除元素又称作出栈或退栈,它是把栈顶元素删除掉,使其相邻的元素成为新的栈顶元素。

类似于步枪的子弹夹,后进去的子弹先发射出来以后,前面的子弹才可以发射。

二. 使用什么来实现栈

前一段时间,我们学习了两种线性表,一种是顺序表,一种是链表,那么对于栈我们该用哪一个来实现比较好呢

首先我们来对比一下线性表和链表

不同点顺序表链表
存储空间上物理上一定连续逻辑上连续,但物理上不一定连续
随机访问可以直接访问任何元素必须从头节点开始往后寻找
任意位置插入或删除元素要搬移其他的元素,效率低。只需要修改节点的指针指向,效率高
插入动态顺序表,当空间不够时需要扩容无容量概念,需要就申请,不用就释放
应用场景元素高效存储,并且需要频繁访问需要在任意位置插入或者删除频繁

综合以上来看,我认为实现一个栈,使用顺序表比较好。

1.栈是先进后出,使用顺序表,在元素出栈后更容易找到新的栈顶。

2.顺序表CPU高速缓存命中率高,可以减少CPU去内存拿数据的次数,速度快,效率高。

三. 栈的实现 3.1 头文件

1.包含的标准库

#include <stdio.h> #include <stdlib.h> #include <stdbool.h> //C语言中的bool类型需要这个头文件 #include <assert.h>

2.定义结构体

typedef int STDateType;//栈中元素的数据类型 typedef struct Stack { STDateType* a; //顺序表 int top; //栈顶 int capacity; //栈的容量 }Stack;

3.函数的声明

void StackInti(Stack* ps); // 栈的初始化 void StackDestory(Stack* ps); // 栈的销毁 void StackPush(Stack* ps, STDateType x); // 入栈 void StackPop(Stack* ps); // 出栈 bool StackEmpty(Stack* ps); // 判断栈是否为空 STDateType StackTop(Stack* ps); // 取栈顶元素 3.2 函数实现

1. 栈的初始化

我们用assert(断言),防止ps为空指针。

void StackInti(Stack* ps) { assert(ps); ps->a = NULL; ps->capacity = 0; ps->top = 0; }

2. 栈的销毁

释放顺序表。

void StackDestory(Stack* ps) { assert(ps); free(ps->a); ps->capacity = 0; ps->top = 0; }

3.入栈

void StackPush(Stack* ps, STDateType x) { assert(ps); if (ps->top == ps->capacity) //判断容量是否足够 { int newCapcity = ps->capacity == 0 ? 4 : ps->capacity * 2; ps->a = (int*)realloc(ps->a, sizeof(int) * newCapcity); if (ps->a == NULL) { printf("ralloc error"); exit(-1); } ps->capacity = newCapcity; } ps->a[ps->top] = x; ps->top++; }

4. 出栈

void StackPop(Stack* ps) { assert(ps); assert(ps->top > 0); //空栈不能被删除 ps->top--; }

5. 判断栈是否为空

bool StackEmpty(Stack* ps) { assert(ps); return ps->top == 0; // 如果为空则返回true,否则返回false }

6. 取栈顶元素

STDateType StackTop(Stack* ps) { assert(ps); assert(ps->top > 0);//空栈不能被删除 return ps->a[ps->top - 1]; }

这样我们就实现了一个简单的栈

3.3 完整代码 #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <assert.h> typedef int STDateType; typedef struct Stack { STDateType* a; int top; int capacity; }Stack; void StackInti(Stack* ps) { assert(ps); ps->a = NULL; ps->capacity = 0; ps->top = 0; } void StackDestory(Stack* ps) { assert(ps); free(ps->a); ps->capacity = 0; ps->top = 0; } void StackPush(Stack* ps, STDateType x) { assert(ps); if (ps->top == ps->capacity) { int newCapcity = ps->capacity == 0 ? 4 : ps->capacity * 2; ps->a = (int*)realloc(ps->a, sizeof(int) * newCapcity); if (ps->a == NULL) { printf("ralloc error"); exit(-1); } ps->capacity = newCapcity; } ps->a[ps->top] = x; ps->top++; } void StackPop(Stack* ps) { assert(ps); assert(ps->top > 0); ps->top--; } bool StackEmpty(Stack* ps) { assert(ps); return ps->top == 0; } STDateType StackTop(Stack* ps) { assert(ps); assert(ps->top > 0); return ps->a[ps->top - 1]; } 四. 栈的用处

我们好不容易实现了一个栈,接下来我们来做个题看看栈有什么用吧。

题目描述

给定一个只包括 ‘(’,’)’,’{’,’}’,’[’,’]’ 的字符串 s ,判断字符串是否有效。

有效字符串需满足:

左括号必须用相同类型的右括号闭合。

左括号必须以正确的顺序闭合。

基础框架

C语言的基础框架如下

bool isValid(char * s){ ​​​​​​​}

解题思路

左括号一定要和右括号对齐,非常满足栈的特性

我们可以将所有的左括号存入一个栈中。

然后遇到右括号,就出栈,判断是否匹配。

直到栈为空且字符串中的括号也遍历完了,那么所有括号就正确的匹配了。

代码详解

// 1.因为C语言并没有现成的栈,所以我们需要自己造轮子,先写个栈再说 typedef char STDateType; // 更改数据类型为char typedef struct Stack { STDateType* a; int top; int capacity; }Stack; void StackInti(Stack* ps) { assert(ps); ps->a = NULL; ps->capacity = 0; ps->top = 0; } void StackDestory(Stack* ps) { assert(ps); free(ps->a); ps->capacity = 0; ps->top = 0; } void StackPush(Stack* ps, STDateType x) { assert(ps); if (ps->top == ps->capacity) { int newCapcity = ps->capacity == 0 ? 4 : ps->capacity * 2; ps->a = (int*)realloc(ps->a, sizeof(int) * newCapcity); if (ps->a == NULL) { printf("ralloc error"); exit(-1); } ps->capacity = newCapcity; } ps->a[ps->top] = x; ps->top++; } void StackPop(Stack* ps) { assert(ps); assert(ps->top > 0); ps->top--; } bool StackEmpty(Stack* ps) { assert(ps); return ps->top == 0; } STDateType StackTop(Stack* ps) { assert(ps); assert(ps->top > 0); return ps->a[ps->top - 1]; } bool isValid(char * s){ Stack a; StackInti(&a); while(*s) { if (*s == '(' || *s == '[' || *s == '{') //入栈 { StackPush(&a, *s); } else //出栈 { if(StackEmpty(&a)) //右括号多一个的情况 { return false; } char tmp = StackTop(&a); StackPop(&a); if ((*s == ')' && tmp != '(') ||(*s == ']' && tmp != '[') ||(*s == '}' && tmp != '{') ) { return false; } } s++; } return StackEmpty(&a); //防止出现多一个左括号的情况 }

到此这篇关于C语言实现栈的示例详解的文章就介绍到这了,更多相关C语言 栈内容请搜索易知道(ezd.cc)以前的文章或继续浏览下面的相关文章希望大家以后多多支持易知道(ezd.cc)!

推荐阅读

    探探语言设置|探探怎么设置语言

    探探语言设置|探探怎么设置语言,,1. 探探怎么设置语言打开探探软件,然后就有消息提示的红点,点开就行了!其实这些软件都是挺简单的操作的,都是

    git设置编码|git语言设置

    git设置编码|git语言设置,,git设置编码点击cap4j搜索从git直接链接上拉代码。git语言设置Git是一个开源的分布式版本控制系统,可以有效、高

    区域语言设置|区域语言设置工具

    区域语言设置|区域语言设置工具,,区域语言设置工具你好,大致的方法如下,可以参考:1、按下键盘的windows 图标,再开始菜单中单击“设置”;出现的

    c4d语言设置|c4d汉语设置

    c4d语言设置|c4d汉语设置,,1. c4d汉语设置mac版的C4D是这样的,中文字体是有的,但是是以拼音的形式存在,比如黑体就是ht。中文字体以拼音方式

    电脑宣传语|电脑宣传语言

    电脑宣传语|电脑宣传语言,,1. 电脑宣传语言1.我做好了与你过一辈子的打算,也做好了你随时要走的准备,2.每段青春都会苍老,但我希望记忆里的你

    office语言设置|微软office语言设置

    office语言设置|微软office语言设置,,微软office语言设置一、首先点击桌面左下角“WIN键”。二、弹出选项内点击“所有程序”。三、接着点

    小米设置日语|小米设置日语语言

    小米设置日语|小米设置日语语言,,1. 小米设置日语语言MIUI系统文字目前只支持简体中文、繁体中文、英文、藏文和维吾尔文,不支持日文 2. 小

    易语言开发电脑系统|易语言电脑版

    易语言开发电脑系统|易语言电脑版,,1. 易语言电脑版首先编译——是将程序编译为exe文件,只能在有易语言的机子上运行,独立编译——是将程序