Akamai interview question

data structure for LRU cache

Interview Answer

Anonymous

17 Mar 2014

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