鏈隊列

廢話很少說,直接上代碼:node #include <stdio.h> #include <malloc.h> typedef struct node { char data; struct node * next; }LinkList; typedef struct { LinkList * front, * rear; }LinkQueue; //建空隊 Link
相關文章
相關標籤/搜索