Jump to content

Logic behind Account Selector order?


sampla

Recommended Posts

 

A hasmap is used. A hashmap does not guarantee order. You referenced the Java doc's iterator as a reference where it says "Iterator does not guarantee order". Well the same documentation in the Hashmap section says the exact same thing for Hashmap.

 

public class HashMap<K,V>

extends AbstractMap<K,V>

implements Map<K,V>, Cloneable, Serializable

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

 

 

The Entry array backing the map does not respect the order of insertion because elements are inserted based on a hash of their hash value. The reason it can't guarantee any other kind of order is because of hash collision (which is pretty much unavoidable). Come to thing of it I'm actually not even sure anymore where the non-guarantee of order is introduced.. at insertion or retrieval.. you may have been right, eh time to hit the books I guess x) Peace

 

(dis thread hijack tho)

Link to comment
Share on other sites

The Entry array backing the map does not respect the order of insertion because elements are inserted based on a hash of their hash value. The reason it can't guarantee any other kind of order is because of hash collision (which is pretty much unavoidable). Come to thing of it I'm actually not even sure anymore where the non-guarantee of order is introduced.. at insertion or retrieval.. you may have been right, eh time to hit the books I guess x) Peace

 

(dis thread hijack tho)

I'm fine as long as the thread gets some attention. 

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...