LeetCode LRUCache
/*LeetCode LRUCache(least recently used)简单实现Design and implement a data structure for Least Recently Used (LRU) cache. It should support thefollowing operations: get and set.get(key) - Get the va...