代码如下:/*** @brief C语言实现的顺序结构类型的栈* @author wid* @date 2013-10-29** @note 若代码存在 bug 或程序缺陷, 请留言反馈, 谢谢!*/ #include #include #include #define TRUE 1#define FALSE 0 typedef struct Point2D{ int x; int y;}ElemType; //栈元素结构 typedef struct{ ElemType *btm; //栈底