All Problems

LFU Cache

Harddata-structureExpected: O(1) time, O(n) spaceInterview Context
hash-map

Problem

Design a Least Frequently Used cache supporting get and put operations in O(1) time.

Loading...