Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 178 Bytes

File metadata and controls

5 lines (3 loc) · 178 Bytes

Simple LRU cache implementation

Template class provides generalized LRU cache.

Algorithmic complexity of the cache is the same as std::unordered_map complexity: almost O(1).