摘要:
stack.h #ifndef __STACK_H__ #define __STACK_H__ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef int ElementType; struct SNode { El 阅读全文
摘要:
本程序实现堆栈的初始化、入栈、出栈、判断栈空、查看栈顶元素、销毁功能。 stack.h文件 #ifndef __STACK_H__ #define __STACK_H__ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #def 阅读全文