队列的操作(C语言实现)

来源:互联网 发布:java unicode码转中文 编辑:程序博客网 时间:2024/05/17 01:05
typedef struct QNode{    int data;    struct QNode *next;}QNode;typedef struct{    QNode *front;    QNode *rear;}LiQueue;

0 0