單鏈隊列的基本操做實現

#include <stdio.h> #include <stdlib.h> #include <malloc.h> typedef struct Queue { int data; struct Queue * next; }Queue; //隊列數據項的組成,數據部分和next指針 typedef struct { struct Queue *front;
相關文章
相關標籤/搜索