PAGE PAGE 3 欢迎下载 栈操作的算法 #include #include #include typedef struct Node { int data; //结点数据域 struct Node *pNext; //指针域 }NODE*PNODE; typedef struct Stack { PNODE pTop; //栈顶