DEV Community

Parag
Parag

Posted on

The “Hello world” of Data Structure-Linked List.

Linked is type of linear data structure which is widely use to solve specific problem raise due to the limitation of arrays.
Linked list can be define as linear data structure in which the elements are not stored in contiguous memory location. In Laymen terms we can say a linked list is a collection of nodes in which each node has a data and the reference to the next node.
https://paragnaik2019.medium.com/the-hello-world-of-data-structure-linked-list-159bba7e4044

Top comments (0)