如何在链表的开头插入节点?

时间:2010-01-01 18:07:21

标签: c data-structures linked-list

addAtBegin有什么问题?将新创建的node分配给start后,列表似乎是正确的,但当控件返回main时,新值不会保存。

typedef struct node
{
    int data;
    struct node *link;
}node;

node* createList(int data)
{
    node *tempNode=(node*)malloc(sizeof(node));
    tempNode->data=data;
    tempNode->link=NULL;
    return tempNode;
}

void addAtBegin(node *start,int data)
{
    node *addedNode=(node *)malloc(sizeof(node));
    addedNode->data=data;
    addedNode->link=(start==NULL)?NULL:start;
    start=addedNode;
}

void displayNodes(node *start)
{
    node *startCopy=start;
    while(startCopy!=NULL)
    {
        printf("%d\t",startCopy->data);
        startCopy=startCopy->link;
    }
    printf("\n");
}

int main( )
{   
    node *start=createList(2);
    addAtBegin(start,1);
    displayNodes(start);
    return 0;
}

1 个答案:

答案 0 :(得分:5)

看起来像我的另一个列表问题,与大多数问题的答案相同 - start应该是指向指针的指针。