数据结构栈的简单应用

数据结构栈的简单应用 栈的实现和运算 #include <stdio.h> #include <stdlib.h> #define OK 1 #define ERROR 0 #define TRUE 1 #define FALSE 0 #define OVERFLOW -2 typedef int ElemType; typedef int Status; //----- 栈的顺序存储表示 ---
相关文章
相关标签/搜索