What is Circular Linked List

Posted by Crniranjanraj under Others on 10/5/2015 | Points: 10 | Views : 1916 | Status : [Member] | Replies : 1
Explain with an example(Java Code) Circular Linked List. What are the benefits of that?




Responses

Posted by: Rajnilari2015 on: 10/12/2015 [Member] [Microsoft_MVP] [MVP] Platinum | Points: 25

Up
0
Down
Circular linked list is a linked list where all nodes are connected to form a circle. There is no NULL at the end. A circular linked list can be a singly circular linked list or doubly circular linked list. (opted from http://geeksquiz.com/circular-linked-list/).

Java Program to Implement Circular Singly Linked List ( http://www.sanfoundry.com/java-program-implement-circular-singly-linked-list/ )

Java Program to Implement Circular Doubly Linked List ( http://www.sanfoundry.com/java-program-implement-circular-doubly-linked-list/ )

--
Thanks & Regards,
RNA Team

Crniranjanraj, if this helps please login to Mark As Answer. | Alert Moderator

Login to post response