第三天學習數據結構,順序棧

#include<stdio.h> #include<malloc.h> // 練習今天學習的棧 操做 //順序棧 // 棧的top指向 最上面的元素的  上面位置,意味top 一直都是空的 #define Maxsize 100 typedef int Iint; typedef struct  { Iint * bottom; Iint * top; int size ; }Stack; vo
相關文章
相關標籤/搜索