#include"Stack.h"
// 初始化和销毁
void STInit(ST* pst)
{
assert(pst);
pst->a = NULL;
// top指向栈顶数据的下一个位置
pst->top = 0;
// top指向栈顶数据
//pst->top = -1;
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)
{
assert(pst);
// 扩容
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(pst->top > 0);
pst->top--;
}
// 取栈顶数据
STDataType STTop(ST* pst)
{
assert(pst);
assert(pst->top > 0);
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;
}
王二空间
- 粉丝: 7495
- 资源: 2101
最新资源
- 中国陕西民俗网-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- Redis可视化管理工具
- 防疫物资管理信息系统pf-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 产业园区智慧公寓管理系统--论文pf-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 三国之家网站设计pf-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 员工健康管理系统pf-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 健康医院门诊在线挂号系统--论文pf-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 二手物品交易boot代码--论文pf-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 乡村养老服务管理系统pf-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 供应商管理系统--论文pf-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 健身房管理系统--论文pf-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 广汽埃安充电协议.pdf
- 党员学习交流平台pf-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- FinQwen-main
- 公司资产网站--论文pf-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
- 瑜伽馆管理系统的设计与实现pf-springboot毕业项目,适合计算机毕-设、实训项目、大作业学习.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈