双链表+哈希表 链表节点中要存储key值,是为了删除时方便更新哈希表 struct Node { int key; int val; Node* next; Node* prev; Node(int _key,int _val) :key(_key),val(...