An open API service indexing awesome lists of open source software.

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

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.