DataStructures: What is a LinkedList?

added by JavaScript Kicks
11/15/2018 8:58:35 AM

561 Views

Our Node has two properties which are data and next. class SinglyLinkedList{ SinglyLinkedList class has three properties head: It is the first node in the List. tail: Last node in the list. length: How many nodes present in the list? we are implementing our first method.


0 comments