在java中获取hashmap中所有键的运行时间是多少?

时间:2017-03-15 16:32:05

标签: java hashmap runtime

例如,我有:

List<HashMap<Integer,Edge>> gfAdjacencyList = new ArrayList<HashMap<Integer,Edge>>(); 
for(int v : gfAdjacencyList.get(u).keySet()){ //u is an int 
    //do stuff
}

gfAdjacencyList.get(u).keySet()的运行时间是多少?我无法在Java文档中找到运行时间

0 个答案:

没有答案