链式栈的基本操作(C语言实现) 2016-02-28 15:52阅读: http://blog.sina.cn/dpool/blog/u/5657948830 #include 'stdafx.h' #include #define OK 1 #define ERROR 0 #define TRUE 1 #define FALSE 0 #define MAXSIZE 20 typedef int Status; typedef int SElemType;