摘要: stack.h #ifndef __STACK_H__ #define __STACK_H__ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef int ElementType; struct SNode { El 阅读全文
posted @ 2020-08-19 17:13 souha 阅读(496) 评论(0) 推荐(0) 编辑
摘要: 本程序实现堆栈的初始化、入栈、出栈、判断栈空、查看栈顶元素、销毁功能。 stack.h文件 #ifndef __STACK_H__ #define __STACK_H__ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #def 阅读全文
posted @ 2020-08-19 10:09 souha 阅读(411) 评论(0) 推荐(0) 编辑