Skip to content

Implementation of the LRU Cache along with common Software Development best practices.

License

Notifications You must be signed in to change notification settings

ShreyTiwari/LRU-Cache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LRU-Cache

Introduction

The 'Least Recently Used' or simply the LRU Cache Eviction Policy is a widely used policy in the modern computer science world. This repository provides an implementation of the LRU Cache using the Linked List and Hashmap approach. The Space Complexity of the implementation is O(n) and the time complexity is O(1).

However, this repository also inculcates common Corporate Software Development practices in the code. A few are listed below:

  • Code Versioning
  • Modularization
  • Error Handling (Input Verification)
  • Unit Testing* (Under Development)
  • Logging
  • Documentation

Note: The code aims to provide an introduction to the mentioned above topics and not an overkill implementation of the LRU Cache.

Code Structure

The code in this repository is structured into modules. Here is a brief description on the code base:

  • LRU_Cache.py: The main file to interact with the LRU Cache implementation logic.
  • Linked_List: Folder containing the implementation of the Doubly Linked List used by the LRU Cache.
  • Helper: Folder containing the implementation of common functions that can be shared across different modules.
  • Logger: Folder containing the implementation of a wrapper over the standard Python logging module.

Usage

All the modules can be run independently for testing and understanding purposes. If you are using a text editors like Visual Studio Code or Pycharm, you can run the modules directly. To use the command line for program execution, use the following command:

python3 <filename>.py

References