从函数返回链表的头部

时间:2015-11-30 20:19:07

标签: c struct linked-list return

我创建的函数接受两个链接结构列表的头部,并使用它们来更新第一个链表中结构的成员。一旦我的while循环完成,我希望返回结构'a'的头部,但是当我返回它时,由于while循环它的值为NULL。一旦更新,我将如何返回'a'的头部?我知道我必须使用临时结构但我该如何实现呢?

struct artist *update_counts(struct artist *a, struct play *p)
{
    struct artist *tmp = a;
    int count = 0;
    while (a != NULL)
    {       
        while (a->artist_id == p->artist_id)
        {
            count += p->playcount;
            p = p->next;
        }
        a->playcount = count;   
        a = a->next;
        count = 0;
    }
    return a;
}

1 个答案:

答案 0 :(得分:0)

通常,要访问链接列表,我们可以使用head pointer将其原始链接列表保留为head_p = ...inputed head node...,然后使用visitor pointer访问链接列表,例如{{ 1}}。在您的代码中,visitor_p = visitor_p->nexttmp

head pointer