https://github.com/petrosath/linked-list-in-javascript
A linked list data structure using javascript.
https://github.com/petrosath/linked-list-in-javascript
data-structures javascript linked-list nodejs
Last synced: 6 months ago
JSON representation
A linked list data structure using javascript.
- Host: GitHub
- URL: https://github.com/petrosath/linked-list-in-javascript
- Owner: petrosAth
- Created: 2023-07-28T09:56:26.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-28T11:41:51.000Z (over 2 years ago)
- Last Synced: 2025-06-15T01:07:06.007Z (10 months ago)
- Topics: data-structures, javascript, linked-list, nodejs
- Language: JavaScript
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
In Javascript array size, array insertion and array deletion are not limitations
hence linked lists are not really necessary. The only purpose of this project is
for practicing on data structures.
A linked list is a linear collection of data elements called nodes that “point”
to the next node by means of a pointer.
Each node holds a single element of data and a link or pointer to the next node
in the list. A head node is the first node in the list, a tail node is the last
node in the list.
## Languages
- `JavaScript`
## Tools
- [`Node.js`](https://nodejs.org/): Node.js® is an open-source, cross-platform
JavaScript runtime environment
- [`ESLint`](https://eslint.org/): Linter that statically analyzes the
JavaScript code to quickly find problems
- [`Prettier`](https://prettier.io/): Prettier is an opinionated code formatter.
It enforces a consistent style by parsing your code and re-printing it with
its own rules that take the maximum line length into account, wrapping code
when necessary