For example, I have:
List<HashMap<Integer,Edge>> gfAdjacencyList = new ArrayList<HashMap<Integer,Edge>>();
for(int v : gfAdjacencyList.get(u).keySet()){ //u is an int
//do stuff
}
What is the run time of gfAdjacencyList.get(u).keySet()
? I can't find the run time on the Java documentation