An Implementation of a char stack */ #define MAXLEN 100 typedef char Data; typedef struct _stack { int top; Data data[MAXLEN]; } Stack; ...
確定! 回上一頁