2019年5月30日

顺序栈的基本操作(今天晚自习写的)

摘要: 1 #include 2 #define MAXSIZE 10 3 typedef int ELemType; 4 typedef struct ZZ { 5 ELemType data[MAXSIZE]; 6 int top; 7 }Sqstack; 8 //初始化顺序栈 9 int initStact(Sqstack *L){ 10 L->top =... 阅读全文

posted @ 2019-05-30 20:44 18软工五班龙向昆 阅读(136) 评论(0) 推荐(0) 编辑

导航