顺序栈与链栈

首先是顺序栈node #include<stdio.h> #include<malloc.h> #define MAXSIZE 100 typedef struct{ int data[MAXSIZE];//数值 int top;//顶 }shunxu; shunxu *chuangjian()//建立顺序表 { shunxu*s; s=(shunxu*)ma
相关文章
相关标签/搜索