stackar.h

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

H
22
字号
        typedef int ElementType;/* START: fig3_45.txt */        #ifndef _Stack_h        #define _Stack_h        struct StackRecord;        typedef struct StackRecord *Stack;        int IsEmpty( Stack S );        int IsFull( Stack S );        Stack CreateStack( int MaxElements );        void DisposeStack( Stack S );        void MakeEmpty( Stack S );        void Push( ElementType X, Stack S );        ElementType Top( Stack S );        void Pop( Stack S );        ElementType TopAndPop( Stack S );        #endif  /* _Stack_h *//* END */

⌨️ 快捷键说明

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