You are viewing a single comment's thread. Return to all comments →
public static SinglyLinkedListNode insertNodeAtPosition(SinglyLinkedListNode head, int data, int position) {
SinglyLinkedListNode node = new SinglyLinkedListNode(data); if (head == null){ return node; } if (position == 0){ node.next = head; return node; } else { SinglyLinkedListNode current = head; for (int i = 0; i < position - 1; i++){ current = current.next; } node.next = current.next; current.next = node; return head; }
}
Before this you will need to remove the Result class and it's braces in order for code to compile.
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Insert a node at a specific position in a linked list
You are viewing a single comment's thread. Return to all comments →
public static SinglyLinkedListNode insertNodeAtPosition(SinglyLinkedListNode head, int data, int position) {
}
Before this you will need to remove the Result class and it's braces in order for code to compile.