https://github.com/cookiey/go-algorithm
✨Implementation of common algorithms
https://github.com/cookiey/go-algorithm
Last synced: 9 months ago
JSON representation
✨Implementation of common algorithms
- Host: GitHub
- URL: https://github.com/cookiey/go-algorithm
- Owner: cookieY
- License: mit
- Created: 2021-08-10T02:42:04.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-02T06:25:10.000Z (about 4 years ago)
- Last Synced: 2025-02-09T06:26:10.229Z (11 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-algorithm
✨Implementation of common algorithms
This Package stores some personal learned algorithm implementations for go
## Cache
Cache replacement policies
[LRU](https://en.wikipedia.org/wiki/Cache_replacement_policies#Least_recently_used_(LRU))
[2Q](https://arpitbhayani.me/blogs/2q-cache)
[LRU-K](https://sqlservergeeks.com/lru-k-algorithm-quick-look/)