How do I modify a pointer that has been passed into a function in C?

前端 未结 5 1528
予麋鹿
予麋鹿 2020-11-21 05:25

So, I have some code, kind of like the following, to add a struct to a list of structs:

void barPush(BarList * list,Bar * bar)
{
    // if there is no move t         


        
5条回答
  •  野的像风
    2020-11-21 06:13

    You need to pass in a pointer to a pointer if you want to do this.

    void barPush(BarList ** list,Bar * bar)
    {
        if (list == NULL) return; // need to pass in the pointer to your pointer to your list.
    
        // if there is no move to add, then we are done
        if (bar == NULL) return;
    
        // allocate space for the new node
        BarList * newNode = malloc(sizeof(BarList));
    
        // assign the right values
        newNode->val = bar;
        newNode->nextBar = *list;
    
        // and set the contents of the pointer to the pointer to the head of the list 
        // (ie: the pointer the the head of the list) to the new node.
        *list = newNode; 
    }
    

    Then use it like this:

    BarList * l;
    
    l = EMPTY_LIST;
    barPush(&l,&b1); // b1 and b2 are just Bar's
    barPush(&l,&b2);
    

    Jonathan Leffler suggested returning the new head of the list in the comments:

    BarList *barPush(BarList *list,Bar *bar)
    {
        // if there is no move to add, then we are done - return unmodified list.
        if (bar == NULL) return list;  
    
        // allocate space for the new node
        BarList * newNode = malloc(sizeof(BarList));
    
        // assign the right values
        newNode->val = bar;
        newNode->nextBar = list;
    
        // return the new head of the list.
        return newNode; 
    }
    

    Usage becomes:

    BarList * l;
    
    l = EMPTY_LIST;
    l = barPush(l,&b1); // b1 and b2 are just Bar's
    l = barPush(l,&b2);
    

提交回复
热议问题