typedefstruct/*定义栈结构*/{DataTypestack[maxsize];/*存放栈中元素的数组*/inttop;/*指向栈顶位置*/}StackType;