数据结构实验3栈
实现顺序栈的各种基本运算。
exp3-1.cpp
#include
#include "sqstack.h"
int main()
{
SqStack st;
ElemType e;
printf("初始化顺序栈st/n");
InitStack(st);
printf("a进栈/n");Push(st,'a');
printf("b进栈/n");Push(st,'b');
printf("c进栈/n");Push(st,'c');
printf("d进栈/n");Push(st,'d');
printf("e进栈/n");Push(st,'e');
printf("顺序栈st%s/n",(StackEmpty(st)==1?"空":"不空"));
GetTop(st,e);
printf("栈顶元素为:%c/n",e);
Pop(st,e);
printf("出栈第一个元素:%c/n",e);
Pop(st,e);
printf("出栈第二个元素:%c/n",e);
GetTop(
数据结构实验3栈最先出现在Python成神之路。
共有 0 条评论