Skip to content

LRU is a cache algorithm that evicts the least recently used cache block whenever the cache is overflowed. It is implemented by using a doubly-Linked List (DLL) with a hashmap with O(1) runtime to perform get() and put() operation

Notifications You must be signed in to change notification settings

Pshak-20000/LRU-CACHE-IN-O-1-

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

LRU-CACHE-IN-O-1-

LRU is a cache algorithm that evicts the least recently used cache block whenever the cache is overflowed. It is implemented by using a doubly-Linked List (DLL) with a hashmap with O(1) runtime to perform get() and put() operation

About

LRU is a cache algorithm that evicts the least recently used cache block whenever the cache is overflowed. It is implemented by using a doubly-Linked List (DLL) with a hashmap with O(1) runtime to perform get() and put() operation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages