c++ 哈希+二叉树随手记录,写的比较粗糙,有问题欢迎指正! // NC94_LFU缓存结构设计,根据力扣题解写的, struct node{ int cnt,time,key,value;//cnt:使用次数 time:时间戳,用数字表示 node(int mcnt,int mtime,int mkey,int mvalue):cnt(mcnt),time(mtime),key(mkey),value(mvalue){} bool operator <(const node&tmp)const{ return cnt==tm...