Find loop in Singly linked list February 20, 2014 by Dhaval Dave There are several ways to find loop in singly linked list, Loop Node5 Next pointer is point to Node3 in Singly Linked List 1 ---- 2 ---- 3 ---- 4 ---- 5 |_____________| Hashmap Floyd’s … Read More
Reversal of LinkedList February 20, 2014 by Dhaval Dave Reversal of linked list simplified With Three Pointer Without Recursion … Read More