typedef struct items { int data; struct items *link; // points to next element } ITEM; typedef struct queue { int size; ITEM *front, *rear; } QUEUE; ...
確定! 回上一頁