Question d’entretien chez Bloomberg

Implement an LRU cache.

Réponse à la question d'entretien

Utilisateur anonyme

27 déc. 2016

Straight-forward solution with a hashmap and a linked list. Also mentioned that Java has this already implemented in the LinkedHashMap class.