大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
#include
#include
typedef
struct node{
int top;//顶
int base;//低
int data[100];//放数据
}Status;//用来记录,下标
Status* create()//初始化
{
Status*s = (Status*)malloc(sizeof(Status));
s->base = s->top = 0;//开始时
return s;
}
void push(Status* s)
{
int a, e;
while (s->top< 100)
{
printf("输入要插入的数据:");
scanf_s("%d", &e);
s->data[s->top] = e;//根据top坐标输入
s->top++;
printf("继续输入栈1(是)或者0(否)\n");
scanf_s("%d", &a);
if (a == 0)
{
break;
}
}
}
void pop(Status*p)
{
while (p->top>=1)
{
printf("%d\n", p->data[(p->top) - 1]);
p->top--;//打印后top下降
}
}
int main()
{ //数组做法栈
Status* t = create();
push(t );
pop(t);
return 0;
}
你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧