stackli.h

来自「数据结构与算法分析(C语言描述)的源代码 里面的代码的质量非常高」· C头文件 代码 · 共 21 行

H
21
字号
        typedef int ElementType;/* START: fig3_39.txt */        #ifndef _Stack_h        #define _Stack_h        struct Node;        typedef struct Node *PtrToNode;        typedef PtrToNode Stack;        int IsEmpty( Stack S );        Stack CreateStack( void );        void DisposeStack( Stack S );        void MakeEmpty( Stack S );        void Push( ElementType X, Stack S );        ElementType Top( Stack S );        void Pop( Stack S );        #endif  /* _Stack_h *//* END */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?