动态顺序栈的C语言实现

#include <stdio.h> #include <stdlib.h> #include <malloc.h> #define STACK_INIT_SIZE 100 #define STACK_INCREMENT 10 #define FALSE -1 #define TRUE 1 #define OK 2 typedef struct {     int *base;     int *
相关文章
相关标签/搜索