第三天学习数据结构,顺序栈

#include<stdio.h> #include<malloc.h> // 练习今天学习的栈 操做 //顺序栈 // 栈的top指向 最上面的元素的  上面位置,意味top 一直都是空的 #define Maxsize 100 typedef int Iint; typedef struct  { Iint * bottom; Iint * top; int size ; }Stack; vo
相关文章
相关标签/搜索