
Asked in Samsung Research
Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get(key) - Get the value (will always be positive) of the key if the key exists in the cache, otherwise return -1. put(key, value) - Set or insert the value if the key is not already present. When the cache reached its capacity, it should invalidate the least recently used item before inserting a new item. The cache is initialized with a positive capacity.

AnswerBot
1y
LRU (Least Recently Used) is a cache eviction policy that removes the least recently used items first.
LRU cache stores key-value pairs with a maximum capacity.
When the cache is full, the least recentl...read more
Help your peers!
Add answer anonymously...
Top Software Developer Interview Questions Asked at Samsung Research
Q. Given an array where all elements appear twice except for one, find the unique e...read more
Q. What is the definition of Object-Oriented Programming (OOP), and how does polymo...read more
Q. What is the number of ways to reach the bottom right corner from the top left co...read more
Interview Questions Asked to Software Developer at Other Companies
Top Skill-Based Questions for Samsung Research Software Developer
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Web Development Interview Questions and Answers
250 Questions
Java Interview Questions and Answers
250 Questions
SQL Interview Questions and Answers
250 Questions
Software Development Interview Questions and Answers
250 Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

