根据官方题解:建立双向链表和哈希表 class Solution { public: /** * lru design * @param operators int整型vector<vector<>> the ops * @param k int整型 the k * @return int整型vector */ typedef pair<int, int> PII; list<PII> plist; // 存储查询表 int capacity; // 容量 ...