Data Structure: Singly Linked List

Summary Name Singly Linked List Type Linked List Use cases Related Data Structures Doubly Linked ListTree Implementations Definition A singly linked list is a list of items, where each element has reference to the next element. Elements do not have info of the previous element. So we can only go to the next element while … Read more