利用哈希表和链表分别保存总记录信息和最近8条记录信息 #include <bits/stdc++.h> using namespace std; using type=pair<string,string>; struct hash_func { size_t operator()(const type& obj)const { &nb...