You are viewing a single comment's thread. Return to all comments →
My Java solution with o(1) time complexity and o(1) space complexity:
static SinglyLinkedListNode insertNodeAtHead(SinglyLinkedListNode llist, int data) { SinglyLinkedListNode newHead = new SinglyLinkedListNode(data); newHead.next = llist; return newHead; }
Seems like cookies are disabled on this browser, please enable them to open this website
Insert a node at the head of a linked list
You are viewing a single comment's thread. Return to all comments →
My Java solution with o(1) time complexity and o(1) space complexity: