linked-list-class
v1.0.1
Published
1. Fork or clone repo. 2. Run `npm install` to install all dependencies. 3. Run `nodemon ./src/linkedLists.js` to run code using Node which will output in your editor's terminal.
Downloads
4
Readme
Linked Lists in JavaScript
- Fork or clone repo.
- Run
npm install
to install all dependencies. - Run
nodemon ./src/linkedLists.js
to run code using Node which will output in your editor's terminal.
What is a linked list?
"A linked list is a linear data structure that consists of a series of nodes connected by pointers. Each node contains data and a reference to the next node in the list. Unlike arrays, linked lists allow for efficient insertion or removal of elements from any position in the list, as the nodes are not stored contiguously in memory." - Geeks for Geeks