You are viewing a single comment's thread. Return to all comments →
Solution in C#, using recursion:
public static Node insert(Node head,int data) { if (head == null) { head = new Node(data); return head; } var newHead = insert(head.next, data); head.next= newHead; return head; }
Seems like cookies are disabled on this browser, please enable them to open this website
Day 15: Linked List
You are viewing a single comment's thread. Return to all comments →
Solution in C#, using recursion: