其中Stack结构定义如下: typedefintPosition;typedefstructSNode *PtrToSNode;structSNode {ElementType*Data;/*存储元素的数组*/Position Top;/*栈顶指针*/intMaxSize;/*堆栈最大容量*/};typedef PtrToSNode Stack; 注意:如果堆栈已满,Push函数必须输出“Stack Full”并且返回false;如果队列是空的,则Pop函数必须输...