Akamai interview question

data structure for LRU cache

Interview Answer

Anonymous

Mar 17, 2014

You can use circular linked list for storing the index and a hash table for storing the current value.