數據結構--鏈式隊列

linkqueue.h #ifndef __LINKQUEUE_H__ #define __LINKQUEUE_H__ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef int datatype; typedef struct linkqueue_node{ datatype data; struct l
相關文章
相關標籤/搜索