LinkedLists
Singly | Doubly | Circular - Implementation and solutions to commonly asked questions
Install / Use
/learn @ShubhangiRaj/LinkedListsREADME
LinkedLists
What is a linked list?
A linked list is an ordered collection of data elements. A data element can be represented as a node in a linked list. Each node consists of two parts: data & pointer to the next node. Unlike arrays, data elements are not stored at contiguous locations. The data elements or nodes are linked using pointers, hence called a linked list.
I have written an article on linked list. Learn more about linked list here => https://codeburst.io/linked-lists-in-javascript-es6-code-part-1-6dd349c3dcc3
