Insert a Node at the Tail of a Linked List

  • + 2 comments

    try in c++

    typedef struct Node *list; list Insert(list head,int data) { if(head==NULL){ head = new Node; head->next=NULL; head->data=data; return head; } return Insert(head->next,data); }