數據結構之順序棧的操做(C語言)

#include <stdlib.h> #include <stdio.h> #include <string.h> #define MAXLEN 50 typedef struct { char name[10]; int age; }DATA; typedef struct stack { DATA date[MAXLEN+1]; int top; }StackType; //
相關文章
相關標籤/搜索