链队列的基本操做(带头结点)

Node.h #ifndef NODE_H #define NODE_H #include <stdio.h> #include <malloc.h> typedef int QElement; //结点类型定义 typedef struct Node { int value; struct Node *next; }QueueNode; typedef struct Qu
相关文章
相关标签/搜索