进队专题

链队列的进队和出队算法

#include<stdio.h>#include<malloc.h>#include<stdlib.h>//#define len sizeof(qnode)typedef struct qnode{ int data;struct qnode *link;}qnode;typedef struct{qnode *front;qnode *rear;}qlink;int in