yshshrm / Data-Structures-And-Algorithms-Hacktoberfest18

List of data structures and algorithms. Feel free to contribute under Hacktoberfest '18!
204 stars 1.1k forks source link

Create LRU_Cache_Implementation_using_Cpp_Stl.cpp #1500

Open amazingankit opened 5 years ago

amazingankit commented 5 years ago

Implemented LRU cache system in cpp using STL.The LRU caching scheme is to remove the least recently used frame when the cache is full and a new page is referenced which is not there in cache.