⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stackar.h

📁 weis的数据结构的实现方法很经典很强大
💻 H
字号:
        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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -