146. LRU Cache
LeetCode 146. LRU Cache
Description
Design a data structure that follows the constraints of a Least Recently Used (LRU) cache.
Implement the LRUCache
class:
LRUCache(int capacity)
Initialize the LRU cache with positive sizecapacity
.int get(int key)
Return the value of thekey
if the key exists, otherwise return-1
.void put(int key, int value)
Update the value of thekey
if thekey
exists. Otherwise, add thekey-value
pair to the cache. If the number of keys exceeds thecapacity
from this operation, evict the least recently used key.
Follow up:
Could you do get
and put
in O(1)
time complexity?
Example 1:
Constraints:
1 <= capacity <= 3000
0 <= key <= 3000
0 <= value <= 10^4
At most
3 * 10^4
calls will be made toget
andput
.
Tags
Design
Solution
We use both linked list (node{key, value}) and hash table (key:node) to construct the LRU Cache.
Get. Check if we can obtain a node from the hash table with the given key. If it exists, we move the node to the front of the linked list and return the value stored in the node. Otherwise, return -1.
Put. Check if we can obtain a node from the hash table with the given key. If it exists, we modify the value of the node and move it to the front of the linked list. Otherwise, we build a new node with the input key-value pair. Then add it to the hash table and insert it to the head of the linked list. At this time, we have to check if there is an overflow. If the length of hash table is greater than the capacity, we remove the last node of the linked list and delete the key-node pair from the hash table.
Complexity
Time complexity:
Space complexity:
Code
Reference
Last updated
Was this helpful?