栈与队列操作的实现完整版 - 数据结构版 #include "stdio.h" #include "stdlib.h" #include "string.h" typedef int Status; // 定义函数类型为 int 型 #define OK 1 // 定义 OK 为 1 #define ERROR 0 // 定义 ERROR为 0 * typedef char SElemType[2