Categorygithub.com/stephenirven/go-datastructures
repositorypackage
0.0.1
Repository: https://github.com/stephenirven/go-datastructures.git
Documentation: pkg.go.dev

# README

go-datastructures

A set of generic data structures with mutex locking.

  • LList - generic doubly linked list implementation
  • List - generic doubly linked list implementation without mutex
  • Map - generic hashmap implementation
  • Set - generic set implementation
  • Heap - generic heap implementation
  • LRU - generic map based cache with Least Recently Used eviction policy