已知队列存储结构如下:typedef struct node /定义队列的存储结构*/int data;struct node *next;Queue;完成下面算法:InQueue(Queue *rear, int x)(/在此处完成算法/