typedef struct linked_queue{DataType data;struct linked_queue * next;}LqueueTp;这个是定义一个结点类型,结点包括两部分:数据域:data,指向下一个结点的指针:nexttypedef struct queuetr{LqueueTp * front, * rear;}QueptrTp;这个是定义一个链,把多个结点串联起来的链,其中front指向链头,rear指向链尾.