鏈隊列的定義及相關操做

#include <stdio.h> #include <malloc.h> typedef struct node { int data; node *next; } Node,*LinkQueueNode; typedef struct { LinkQueueNode front; //隊頭指針 LinkQueueNode rear; //隊尾指針 } L
相關文章
相關標籤/搜索