c语言实现队列queue(附完整源码)

node结构体

struct node                                          
{
   
    
    
    int data;
    struct node *next;
    struct node *pre;
} * head, *tail

猜你喜欢

转载自blog.csdn.net/it_xiangqiang/article/details/113972589