Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kzamanbd/linked-list
In simple words, a linked list consists of nodes where each node contains a data field and a reference(link) to the next node in the list.
https://github.com/kzamanbd/linked-list
algorithms data-structures linked-list
Last synced: 6 days ago
JSON representation
In simple words, a linked list consists of nodes where each node contains a data field and a reference(link) to the next node in the list.
- Host: GitHub
- URL: https://github.com/kzamanbd/linked-list
- Owner: kzamanbd
- Created: 2023-12-07T17:36:13.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-01-18T09:24:46.000Z (12 months ago)
- Last Synced: 2024-11-11T23:16:55.902Z (2 months ago)
- Topics: algorithms, data-structures, linked-list
- Language: C++
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# linked-list
In simple words, a linked list consists of nodes where each node contains a data field and a reference(link) to the next node in the list.