Question:
in java hashmap is ther ea way to find the position of an entry and loop thru the rest o the entries?
kuridit_b_cobain
2005-12-09 04:18:10 UTC
in java hashmap is ther ea way to find the position of an entry and loop thru the rest o the entries?
Four answers:
vasutech
2005-12-09 12:26:34 UTC
It is not possible to find the positionof an entry in a hashmap. So there is no question of looping the rest of entries.





Hash table based implementation of the Map interface. This implementation provides all of the optional map operations, and permits null values and the null key. (The HashMap class is roughly equivalent to Hashtable, except that it is unsynchronized and permits nulls.) This class makes no guarantees as to the order of the map; in particular, it does not guarantee that the order will remain constant over time.



This implementation provides constant-time performance for the basic operations (get and put), assuming the hash function disperses the elements properly among the buckets. Iteration over collection views requires time proportional to the "capacity" of the HashMap instance (the number of buckets) plus its size (the number of key-value mappings). Thus, it's very important not to set the initial capacity too high (or the load factor too low) if iteration performance is important.



An instance of HashMap has two parameters that affect its performance: initial capacity and load factor. The capacity is the number of buckets in the hash table, and the initial capacity is simply the capacity at the time the hash table is created. The load factor is a measure of how full the hash table is allowed to get before its capacity is automatically increased. When the number of entries in the hash table exceeds the product of the load factor and the current capacity, the capacity is roughly doubled by calling the rehash method.



As a general rule, the default load factor (.75) offers a good tradeoff between time and space costs. Higher values decrease the space overhead but increase the lookup cost (reflected in most of the operations of the HashMap class, including get and put). The expected number of entries in the map and its load factor should be taken into account when setting its initial capacity, so as to minimize the number of rehash operations. If the initial capacity is greater than the maximum number of entries divided by the load factor, no rehash operations will ever occur.



If many mappings are to be stored in a HashMap instance, creating it with a sufficiently large capacity will allow the mappings to be stored more efficiently than letting it perform automatic rehashing as needed to grow the table.



Note that this implementation is not synchronized. If multiple threads access this map concurrently, and at least one of the threads modifies the map structurally, it must be synchronized externally. (A structural modification is any operation that adds or deletes one or more mappings; merely changing the value associated with a key that an instance already contains is not a structural modification.) This is typically accomplished by synchronizing on some object that naturally encapsulates the map. If no such object exists, the map should be "wrapped" using the Collections.synchronizedMap method. This is best done at creation time, to prevent accidental unsynchronized access to the map:



Map m = Collections.synchronizedMap(new HashMap(...));

The iterators returned by all of this class's "collection view methods" are fail-fast: if the map is structurally modified at any time after the iterator is created, in any way except through the iterator's own remove or add methods, the iterator will throw a ConcurrentModificationException. Thus, in the face of concurrent modification, the iterator fails quickly and cleanly, rather than risking arbitrary, non-deterministic behavior at an undetermined time in the future.



Note that the fail-fast behavior of an iterator cannot be guaranteed as it is, generally speaking, impossible to make any hard guarantees in the presence of unsynchronized concurrent modification. Fail-fast iterators throw ConcurrentModificationException on a best-effort basis. Therefore, it would be wrong to write a program that depended on this exception for its correctness: the fail-fast behavior of iterators should be used only to detect bugs.





HashMap Example:







Example



import java.util.*;



public class HashMapDemo

{



private HashMap cities;



public HashMapDemo()

{

// initialise instance variables

cities = new HashMap(5);

}



public void test()

{

System.out.println("Entering 5 cities and populations into the map");

cities.put("Canberra", "2");

cities.put("Hobart", "3");

cities.put("Perth", "4");

cities.put("Sydney", "8");

cities.put("Melbourne", "6");





//Display the contents in various ways

// Using Map.Entry



System.out.println("Using iterators with Map.Entry:");

Set set = cities.entrySet();

Iterator it = set.iterator();

while (it.hasNext())

{

Map.Entry e =

(Map.Entry)it.next();

System.out.println((String)e.getKey() + " has a population of " +

(String)e.getValue());

}



//Using keySet()



System.out.println("Using

keySet():");

it = cities.keySet().iterator();

while (it.hasNext())

{

String city =

(String)it.next();

String population =

(String)cities.get(city);

System.out.println(city + " has a

population of " + population);

}



//Using values()

System.out.println("Using

values():");

it = cities.values().iterator();

while (it.hasNext())

{

System.out.println

((String)it.next());

}

//Try some membership methods

System.out.println("Do we have a

value for Sydney?");

System.out.println

(cities.containsKey("Sydney"));

System.out.println("Do we have a

value for Newcastle?");

System.out.println

(cities.containsKey("Newcastle"));

System.out.println("Do we have a

city with population 4?");

System.out.println

(cities.containsValue("4"));

System.out.println("Do we have a

city with population 12?");

System.out.println

(cities.containsValue("12"));

}



}











Results



Entering 5 cities and populations into the map



Using iterators with Map.Entry:



Canberra has a population of 2

Melbourne has a population of 6

Sydney has a population of 8

Perth has a population of 4

Hobart has a population of 3



Using keySet():



Canberra has a population of 2

Melbourne has a population of 6

Sydney has a population of 8

Perth has a population of 4

Hobart has a population of 3



Using values():



2

6

8

4

3



Do we have a value for Sydney?



true



Do we have a value for Newcastle?



false



Do we have a city with population 4?



true



Do we have a city with population 12?



false
?
2016-09-24 07:09:20 UTC
Java Hashmap Loop
anonymous
2016-03-13 04:39:53 UTC
Leave the country. That will be the only way for you to escape such a horrible fate. Next time you have a child you will think twice about not enrolling her in acting classes at birth, what did you expect, really? Get started packing now and you can be gone before anyone notices. It would be even better if you left in the dead of night so no one knows you are gone.
Yarnlady_needsyarn
2006-02-20 21:45:12 UTC
I am sending this notice to remind you to choose a best answer


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...