We've reached 100 Scala Algorithms! Latest: Print Binary Tree Vertically!
Which of the scheduled algorithms would you like to see first? We can update the schedule.
https://t.co/wVmIAvuROW
Token Bucket Rate Limiter
While similar to LeakyBucketRateLimiter, it works a bit differently, and is specifically useful as a network layer algorithm in order rate-limit packets:
Visit the Algorithm...
https://t.co/Jt1gNHYglh
Leaky Bucket Rate Limiter
The leaky bucket algorithm provides a constant output rate based on an input, and where the maximum capacity is exceeded, inputs are ignored.
Visit the Algorithm page
...
https://t.co/MGdw7HWUTo
Least-recently used cache (MRU)
A most-recently used cache (MRU) stores a set of key-value pairs in order of their most recent access but evicts the most-recently used one when space is needed. 'MRU' refers to ...
https://t.co/OSdv9HAspx
Game of Life
The Game of Life, also known as Conway's Game of Life, is a simulation of a system where cells die out if there is overpopulation, and die out if there is underpopulation.
Visit the Algorithm page