We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
  • Practice
  • Certification
  • Compete
  • Career Fair
  • Hiring developers?
  1. Practice
  2. Data Structures
  3. Linked Lists
  4. Insert a Node at the Tail of a Linked List
  5. Discussions

Insert a Node at the Tail of a Linked List

Problem
Submissions
Leaderboard
Discussions
Editorial

    You are viewing a single comment's thread. Return to all comments →

  • samfelder17 4 years ago+ 0 comments

    I tried doing mine recursively in C any idea what went wrong?

    Node* Insert(Node *head,int data)
    {
        if(head->next==NULL)
            {
                Node *newn=(Node *)malloc(sizeof(Node));
                head->next=newn;
                newn->next=NULL;
                newn->data=data;
                return newn;
            }
        Insert(head->next,data);
        return head;
    }
    
    -18|
    ParentPermalink
  • Contest Calendar
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy
  • Request a Feature