数据结构 栈和队列基本操作.doc
实验二 栈和队列 //栈的顺寻存储操作 #include "stdio.h" #include "stdlib.h" #define STACK_INIT_SIZE 100 #define STACKINCREMENT 10 typedef struct { int *base; int *top; int stacksize; }Sqstack; void Initstack(Sqstack &
下载地址
用户评论