Is there any way to convert an object of LinkedList class to a circular linked list.
Or is there any predefined class like CircularLinkedList in java.util Some thing like this (some thing like http://docs.oracle.com/javase/1.4.2/docs/api/java/util/LinkedList.html)
Any help would be really appreciated....
Thanks in Advance :-)
LinkedListis actually internally implemented as a circular linked list, with a dummyheadernode.