I was working on java HashMaps and found that it adds values to the head of the list. For example ,
hm.put(mike,2); hm.put(andrew,3);
Now,if i print the hasmap using iterator,i get
andrew 3
mike 2
I want the items to be added in the FIFO fashion rather than LIFO fashion ... Is there a way to do it?
Map(and hash structures in general) is not aList, check the interface spec. If you want ordering, you need something specific. – andersoj Feb 27 '11 at 22:43