https://github.com/hirenchauhan2/linkedlist
Linkedlist in Go
https://github.com/hirenchauhan2/linkedlist
data-structures go golang linked-list
Last synced: 6 months ago
JSON representation
Linkedlist in Go
- Host: GitHub
- URL: https://github.com/hirenchauhan2/linkedlist
- Owner: hirenchauhan2
- License: mit
- Created: 2018-07-12T20:56:52.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-12T21:28:14.000Z (almost 8 years ago)
- Last Synced: 2024-06-20T11:51:01.072Z (about 2 years ago)
- Topics: data-structures, go, golang, linked-list
- Language: Go
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Linkedlist in Go
As I'm learning Golang, I thought why not try to implement the popular data structure Linkedlist?
## What is linkedlist?
Linkedlist is a dynamic data structure where the list is made up of dynamically created nodes and stored in non-continuous manner.
## References
- [Data Structures: Linked List
](https://medium.com/software-engineering-101/data-structures-linked-list-e518261e7fe9)
- [Basecs What is linkedlist anyway](https://medium.com/basecs/whats-a-linked-list-anyway-part-1-d8b7e6508b9d)
## Contributions
I would love to learn from you guys. If you found any improvements then please make a PR and I will happily merge it.