加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Stack.c 1023 Bytes
一键复制 编辑 原始数据 按行查看 历史
徐志荣 提交于 2022-10-26 09:29 . 数据结构|栈
#define _CRT_SECURE_NO_WARNINGS 1
#include "Stack.h"
void StackInit(ST* ps)
{
ps->a = (STDataType*)malloc(sizeof(STDataType)*4);
if (ps->a == NULL)
{
printf("relloc fail\n");
exit(-1);
}
ps->capacoty = 4;
ps->top = 0;
}
void StackDestory(ST* ps)
{
assert(ps);
free(ps->a);
ps->a = NULL;
ps->top = ps->capacoty = 0;
}
//入栈
void StackPush(ST* ps, STDataType x)
{
assert(ps);
//满了
if (ps->top == ps->capacoty) {
STDataType* tmp = realloc(ps->a, ps->capacoty * 2 * sizeof(STDataType));
if (tmp == NULL)
{
printf("relloc fail\n");
exit(-1);
}
else {
ps->a = tmp;
ps->capacoty *= 2;
}
}
ps->a[ps->top] = x;
ps->top++;
}
//出栈
void StackPop(ST* ps)
{
assert(ps);
//栈空了,调用Top,直接中止程序报错
assert(ps->top > 0);
//top减一
ps->top--;
}
STDataType StackTop(ST* ps)
{
assert(ps);
assert(ps->top > 0);
return ps->a[ps->top - 1];
}
int StackSize(ST* ps)
{
assert(ps);
return ps->top;
}
bool StackEmpty(ST* ps) {
assert(ps);
return ps->top == 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化