面试官人很好,很温柔,正式批一定还会来😭 全程1小时3分钟48秒 1.自我介绍 2.项目相关 3.给了几行代码 Map<Integer,String> map = new HashMap<>(); for(Integer i = 0; i < 200; i++){ map.put(i,String.valueOf(i)); map.remove(i - 1); } System.out.println(map.size()); 问打印结果 4.HashMap的remove时间复杂度,HashMap和Has...