I'm thinking about filling a collection with a large amount of unique objects. How is the cost of an insert in a Set (say HashSet) compared to an List (say ArrayList)?
My feeling is that duplicate elimination in sets might cause a slight overhead.
|
I'm thinking about filling a collection with a large amount of unique objects. How is the cost of an insert in a Set (say HashSet) compared to an List (say ArrayList)? My feeling is that duplicate elimination in sets might cause a slight overhead. |
|||||
|
|
There is no "duplicate elimination" such as comparing to all existing elements. If you insert into hash set, it's really a dictionary of items by hash code. There's no duplicate checking unless there already are items with the same hash code. Given a reasonable (well-distributed) hash function, it's not that bad. As Will has noted, because of the dictionary structure |
|||||||
|
|
You're right: set structures are inherently more complex in order to recognize and eliminate duplicates. Whether this overhead is significant for your case should be tested with a benchmark. Another factor is memory usage. If your objects are very small, the memory overhead introduced by the set structure can be significant. In the most extreme case ( |
|||
|
|
|
If you're certain your data will be unique, use a List. You can use a Set to enforce this rule. Sets are faster than Lists if you have a large data set, while the inverse is true for smaller data sets. I haven't personally tested this claim. Which type of List? ArrayLists are faster at random access ( |
|||||||||||
|
|
You have to compare concrete implementations (for example Inserting into a |
|||
|
|
|
If the goal is the uniqueness of the elements, you should use an implementation of the java.util.Set interface. The class java.util.HashSet and java.util.LinkedHashSet have O(alpha) (close to O(1) in the best case) complexity for insert, delete and contains check. Lists have O(n) for contains check, insert and delete. You can use LinkedHashSet that preserve the order of insertion and have the same potentiality of HashSet (takes up only a bit more of memory). |
|||
|
I don't think you can make this judgement simply on the cost of building the collection. Other things that you need to take into account are:
These can all effect your choice of data structure. |
|||
|
|