typedef struct node { datatype data; struct node *next; } QNode; /*链队结点的类型*/ typedef struct { QNnode *front,*rear; } LQueue; /*将头尾指针封装在一起的链队*/