int key, val; DListNode* pre; DListNode* nex; DListNode(int key, int val):key(key), val(val), pre(NULL), nex(NULL){}; }; class Solution { public: /** * lru design * @param operators int整型vector<vector<>> the ops * @param k int整型 the k * @return int整型v...