Insert a node at the head of a linked list

  • + 0 comments

    for c++, the following code worked, SinglyLinkedListNode *pNew= new SinglyLinkedListNode(data); if(llist == nullptr){ llist = pNew; }else{ pNew->next = llist; llist = pNew; } return llist;