Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 405 Bytes

README.md

File metadata and controls

10 lines (6 loc) · 405 Bytes

LRU Cache

test build

Small implementation of an LRU cache written in C.

What is an LRU Cache

A Least Recently Used (LRU) Cache organizes items in order of use, allowing you to quickly identify which item hasn't been used for the longest amount of time.