Deleting all items from a queue

前端 未结 0 1347
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-02 09:37

Lets say I have the following structure

typedef struct node {
    unsigned long data;
    struct node* next;
} node;

typedef struct queue {
    node* head;
          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题