如何从链表中出列时释放内存?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从链表中出列时释放内存?相关的知识,希望对你有一定的参考价值。

我正在使用malloc()函数来在C中创建一个队列,问题是当我使用dequeue()函数时,我留下了一个未引用的元素。我必须每秒多次使用这个函数,所以我想知道哪个是处理它的最佳方法,或者是否有比使用malloc()更好的方法。这是两个功能:

void enqueue(struct Queue *q, char c){
//adds an element to the queue
    struct Member* m = malloc(sizeof *m);//in order to make m global    
    if(!m){ perror("malloc");exit(EXIT_FAILURE);}
    if(q->length == 0){

        m->ch = c;
        q->first = m;
        q->last = m;

    }else{    
        m->ch = c;
        q->last->next = m;
        q->last = m;
    }   
    q->length++;
}

char dequeue(struct Queue *q){
//returns the first element of the queue an delete it
    char c;
    if(q->length >0){
        q->length--;
        c = q->first->ch;
        q->first= q->first->next;
        //CLEAR THE UNREFERENCED VARIABLE
    }
    return c;
}

谢谢!

编辑:

这些是我正在使用的结构:

typedef struct Queue{
      int length;
      struct Member *first;
      struct Member *last;
}Queue;

typedef struct Member{
      char ch;
      struct Member *next;
}Member;
答案

首先将unreferenced variable存储到temporary variable,以便在更改队列的第一个节点后可以对其进行free

//returns the first element of the queue and delete it
char dequeue(struct Queue *q){

    struct Member* temp = q->first;;
    char c;

    if(q->length >0){
        q->length--;
        c = q->first->ch;
        q->first= q->first->next;
        free(temp);
    }
    return c;
}

您可以查看更多关于free here的信息。

以上是关于如何从链表中出列时释放内存?的主要内容,如果未能解决你的问题,请参考以下文章

从链表顺利打印节点

UCOS学习之内存管理

如何从链表中反转堆栈?

从链表中删除节点

从链表中删除一个节点

从链表 C++ 中删除节点