Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Implement the Least Recently Used | LRU Cache | Leetcode | Using Map
Jan 14, 2025
127 views
Implement the Least Recently Used (LRU) cache class LRUCache. The class should support the following operations
A key is considered used if a get or a put operation is called on it.
Ensure that get and put each run in O(1)
O(1) average time complexity.
Example 1:
let's take this and brainstorm our implementation part:
The Map object in JavaScript is a powerful and versatile data structure that has several unique properties, making it ideal for problems like the LRU Cache and many others.
Let's break down its nature, advantages, and some ideas we can use beyond the LRU Cache.
Nature of Map
This question a
This question can also be solved using double linked list which we will cover in next thread.