typedef struct { char *name; char sex; }Person; typedef struct { Person *base; int front; int rear; }SqQueue; /*上述是結構體的定義*/
確定! 回上一頁