Is the order of values retrieved from a HashMap the insertion order

前端 未结 6 1906
天命终不由人
天命终不由人 2020-11-22 07:26

I am trying figure out the order in which the values in a HashMap are/can be retrieved. Heres the code snippet for the same.

import java.util.HashMap;

publ         


        
相关标签:
6条回答
  • 2020-11-22 08:09

    Try LinkedHashMap if order is important... see from JavaDoc

    public class LinkedHashMap extends HashMap

    Hash table and linked list implementation of the Map interface, with predictable iteration order. This implementation differs from HashMap in that it maintains a doubly-linked list running through all of its entries. This linked list defines the iteration ordering, which is normally the order in which keys were inserted into the map (insertion-order). Note that insertion order is not affected if a key is re-inserted into the map. (A key k is reinserted into a map m if m.put(k, v) is invoked when m.containsKey(k) would return true immediately prior to the invocation.)

    0 讨论(0)
  • 2020-11-22 08:11

    A related collection is java.util.concurrent's ConcurrentSkipListMap. A skiplist allows you to traverse the entries in key order and also look them in random order (but not as fast as a HashMap).

    There's a nice skiplist demo applet.

    0 讨论(0)
  • 2020-11-22 08:19

    From the Javadoc: HashMap "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."

    If you need consistent ordering, you can use LinkedHashMap (for insertion/access order), or TreeMap (for comparision order). Please note, that these maintain the order of the keys, not the values.

    0 讨论(0)
  • 2020-11-22 08:19

    No, the order is not preserved in case of HashMap (if you want sorted implementation.) In case you want keys to be sorted, you can use TreeMap.

    for example - {[3=1],[2=50],[20=4],[14=1]} -> HashMap

    for TreeMap, you get - {[2=50],[3=1],[14=1],[20=4]} -> TreeMap

    0 讨论(0)
  • 2020-11-22 08:23

    A LinkedHashMap is what you're after. From the doco, it differs from HashMap in that it maintains a doubly-linked list running through all of its entries

    0 讨论(0)
  • 2020-11-22 08:28

    The values are printed in the order in which they have been inserted. Is this true in general? I was expecting the values to be printed in random order.

    The HashMap API does not define the order of iteration.

    However, if you look at the implementation of HashMap, you can deduce that there is a complex transient relationship between the iteration order, the keys' hash values, the order in which the keys were inserted and the size of the hashtable. This relationship gets scrambled if the hashtable resizes itself.

    In your case, you are using Integer keys which means that the hash values of the keys are the key values themselves. Also, you inserted the entries in key order. This leads (fortuitously!) to the iteration order matching the insertion order. But if you kept inserting more keys, you would find that the iteration order "wraps around". Then as the table goes through a series of resizes, the order will get progressively more and more scrambled.

    In short, what you are seeing is an artefact of the hashtable implementation, and not something that you can (or should) sensibly make use of. Not least because it could change from one Java release to the next.

    0 讨论(0)
提交回复
热议问题