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