c語言:順序棧的實現

#include<iostream> #include<stdio.h> #include<math.h> #define STACK_INIT_SIZE 100 #define STACK_INCREMENT 10 using namespace std; typedef struct Stack //結構體定義 { int *elem; //數據域 int top;
相關文章
相關標籤/搜索