diff --git a/Data Structures/Lists/DoublyLinkedList.java b/Data Structures/Lists/DoublyLinkedList.java index c3229d9c336d..bf12cad77260 100644 --- a/Data Structures/Lists/DoublyLinkedList.java +++ b/Data Structures/Lists/DoublyLinkedList.java @@ -1,6 +1,7 @@ /** * This class implements a DoublyLinkedList. This is done using the classes * LinkedList and Link. + Concepts of pointers is not used in Java so we implement here directly.. * * A linked list is simplar to an array, it holds values. However, * links in a linked list do not have indees. With a linked list @@ -211,4 +212,4 @@ public static void main(String args[]){ myList.insertOrdered(3); myList.display(); // <-- 3(head) <--> 10 <--> 13 <--> 23 <--> 67(tail) --> } -} \ No newline at end of file +}