Wednesday, April 27, 2011

How to create a copy of a linked list?

linked_lists_copy(struct data_node *q, struct data_node **s) {
    if(q!=NULL)
    {
        *s=malloc(sizeof(struct data_node))
        (*s)->data=q->data;
        (*s)->link=NULL;
        linked_lists_copy(q->link, &((*s)->link));
    } }

No comments:

Post a Comment

Thank you for Commenting Will reply soon ......

Featured Posts

Installing And Exploring Auto Dark Mode Software

Windows Auto--Night--Mode: Simplify Your Theme Switching   Windows Auto--Night--Mode is a free and lightweight tool that makes switching bet...