2015 年广工数据结构Anyview 答案 /* 1.06 题目试写一算法实现顺序栈的判空操作 StackEmpty_Sq(SqStack S) 顺序栈的类型定义为 typedef struct { ElemType *elem; // 存储空间的基址 int top; // 栈顶元素的下一个位置简称栈顶位标 int size; // 当前分 配的存储容量 int increment; //