class Solution { public: /** * lru design * @param operators int整型vector<vector<>> the ops * @param k int整型 the k * @return int整型vector */ vector<int> LRU(vector<vector<int> >& operators, int k) { // write code here // 使用list来维护LRU缓存 // 使用哈希表提高查询速度 list<pair<i...