代码拉取完成,页面将自动刷新
#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;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。