C语言使用Linked List实现Queue(附完整源码)

node结构体,queue结构体

struct node
{
   
    
    
    int data;
    struct node *next;
};

struct queue
{
   
    
    
    struct node *front,

猜你喜欢

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