当前位置: 首页 > news >正文

校园网站建设必要性学物联网工程后悔死了

校园网站建设必要性,学物联网工程后悔死了,合肥seo招聘,广州最新黄码区域地图Hello,今天我们来实现一下数组栈,学完这个我们又更进一步了。 一、栈 栈的概念 栈是一种特殊的线性表,它只允许在固定的一端进行插入和删除元素的操作。 进行数据的插入和删除只在栈顶实现,另一端就是栈底。 栈的元素是后进先出。…

在这里插入图片描述

Hello,今天我们来实现一下数组栈,学完这个我们又更进一步了。

一、栈

栈的概念

栈是一种特殊的线性表,它只允许在固定的一端进行插入和删除元素的操作。
进行数据的插入和删除只在栈顶实现,另一端就是栈底。
栈的元素是后进先出。

压栈:栈的数据进入就是压栈
出栈:栈的数据删除就叫出栈

我们画一个原理图让大家比较好理解一下。

在这里插入图片描述

这一过程叫做pop出栈

我们上述的过程都是在栈顶实现出栈入栈,并不能像顺序表和单链表那样从任意位置删除和增加,但这就是栈的性质,我们后面会讲它的作用。

实现栈我们可以用链表产生节点的方式链接他们,但是也可以用数组下标访问的方式,类似顺序表这样的方法
那这两个方法哪个好呢,我们来比较一下。

因为栈的性质我们不得从栈顶出栈和入栈,如果我们实现的时候是链表的方式,那必然会存在一个问题,就是我们的时间复杂度是O(N)我们需要遍历一遍数组,这样的话栈好像变得“土”,所以用数组的方式更快的提高效率,

二、栈的定义

typedef int StackDataType;
#define N 100
struct Stack
{StackDataType arry[N];StackDataType top;
};

这是静态栈,在顺序表的时候我们就讲过静态栈存在缺点,最大的缺点就是不能开辟空间,100个最多只能存100个数据,如果我只使用10个int空间就存在浪费了,如果我要存储1000个数据,我们的空间又不够了,这就会造成一系列问题,所以我们改一下,变成动态栈,我们来实现一下吧。

typedef int StackDataType;
typedef struct Stack
{StackDataType* arry;int top;int capacity;
}Stack;

有了结构体还是老样子,我们来实现一下接口函数,开整!
初始化栈

void StackInit(Stack* pst)
{assert(pst);pst->arry = NULL;pst->capacity = pst->top = 0;
}

初始化栈这个大家肯定会了。

销毁


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

判断栈是否为空

bool StackEmpty(Stack* pst)
{assert(pst);return pst->top == 0;
}

现在我们要实现一个入栈的方法,入栈的时候我们需要检查一下我们的内存空间是不是满了,和顺序表一样的道理,如果满了我们就需要扩容。所以在入栈的时候需要判断一下它空间有没有满。

void StackPush(Stack* pst, StackDataType x)
{assert(pst);if (pst->capacity == pst->top){int newcapacity = pst->capacity == 0 ? 4 : pst->capacity * 2;StackDataType* tmp = (StackDataType*)realloc(pst->arry, sizeof(int) * newcapacity);if (tmp == NULL){printf("realloc fail\n");exit(-1);}pst->arry = tmp;pst->capacity = newcapacity;}pst->arry[pst->top - 1] = x;pst->top++;}

这和我们顺序表的尾插一摸一样,现在看大家肯定觉得简单很多了。
有了入栈,那就有出栈。

void StackPop(Stack* pst)
{assert(pst);if (pst->top > 0){pst->top--;}
}

因为我们上面写了一个判断该数是不是为空我们也可以写成

void StackPop(Stack* pst)
{assert(pst);if (!StackEmpty(pst)){pst->top--;}
}

返回栈顶数据

StackDataType StackTop(Stack* pst)
{assert(pst);return pst->arry[pst->top - 1];
}

统计栈里有多少数

int StackSize(Stack* pst)
{assert(pst);return pst->top;
}

完整代码

#pragma once#include<stdio.h>
#include<assert.h>
#include<stdlib.h>
#include<stdbool.h>
//typedef int StackDataType;
//#define N 100
//struct Stack
//{
//	StackDataType arry[N];
//	StackDataType top;
//};typedef int StackDataType;
typedef struct Stack
{StackDataType* arry;int top;int capacity;
}Stack;void StackInit(Stack* pst);void StackDestory(Stack* pst);bool StackEmpty(Stack* pst);void StackPush(Stack* pst, StackDataType x);void StackPop(Stack* pst);StackDataType StackTop(Stack* pst);int StackSize(Stack* pst);

#include"Stack.h"void StackInit(Stack* pst)
{assert(pst);pst->arry = NULL;pst->capacity = pst->top = 0;
}void StackDestory(Stack* pst)
{assert(pst);free(pst->arry);pst->capacity = pst->top = 0;}bool StackEmpty(Stack* pst)
{assert(pst);return pst->top == 0;
}void StackPush(Stack* pst, StackDataType x)
{assert(pst);if (pst->capacity == pst->top){int newcapacity = pst->capacity == 0 ? 4 : pst->capacity * 2;StackDataType* tmp = (StackDataType*)realloc(pst->arry, sizeof(int) * newcapacity);if (tmp == NULL){printf("realloc fail\n");exit(-1);}pst->arry = tmp;pst->capacity = newcapacity;}pst->arry[pst->top - 1] = x;pst->top++;}void StackPop(Stack* pst)
{assert(pst);if (pst->top > 0){pst->top--;}
}void StackPop(Stack* pst)
{assert(pst);if (!StackEmpty(pst)){pst->top--;}
}StackDataType StackTop(Stack* pst)
{assert(pst);return pst->arry[pst->top - 1];
}int StackSize(Stack* pst)
{assert(pst);return pst->top;
}

栈的应用也有很多,后面会分享给大家,我们下次再见

http://www.yayakq.cn/news/840938/

相关文章:

  • 宁波网站建设caiyiduo公司网站开发怎么做
  • 影院网站如何做度娘网站灯笼要咋做呢
  • 做视频网站适合用什么服务器wordpress 评论管理
  • asp源码下载网站建设厅官网查询
  • 营销网站建设实训总结自己怎样做优惠券网站
  • 广西seo网站推广wordpress 最新文章调用
  • 平板购物网站建设网站的必要性
  • 网站多长时间到期中山网站建设中山
  • 中牟建设工程信息网站郑州企业网站优化公司
  • 金桥网站建设出名的设计网站
  • 企业进行网站建设的方式有哪些做农药的网站
  • 做企业网站哪家公司专业虚拟机中做网站
  • 通信管理局网站 备案icp查询官网
  • 重庆市建设安全监督站的网站专业定制网站建设团队
  • 响应式网站设计规则哪个好用?
  • wordpress浮窗音乐东莞网站关键词优化怎么做
  • xampp可以做网站吗关于网站建设的工作总结
  • 域名搭建网站娱乐视频直播网站建设
  • 郑州网站建设制作费用php网页制作工具
  • 营销型网站套餐河北住房建设厅官方网站
  • 经常修改网站的关键词好不好深圳市seo网站设计多少钱
  • 宜宾建设局网站集团网站品牌建设特点
  • 郑州seo服务公司抖音seo软件
  • 个人做财经类网站做视频网站什么平台好
  • 备案变更网站做的最好的本地生活网站
  • 二次元动漫网站设计方案苏州注册公司网上核名
  • 用钩针做花网站微信商水县住房城乡建设网站
  • app小程序网站开发企业网站项目流程
  • 荆州哪个公司做网站wordpress 加载图片
  • 企业手机网站源码东莞微信小程序开发公司报价