java hashmap倒序_如何在Java中以相反的顺序迭代hashmap
我尝试了一个小时,但没有找到任何最佳方法来实现反向的哈希图迭代,这就是我拥有的哈希图。Map> map = new HashMap>();for(Integer key : map.keySet()) {List value = map.get(key);List> security = new LinkedList>();for(int ixy = 0; ixy <...