Maybe I'm being picky, but in javadoc there is a following information about LinkedHashSet implementation:

This implementation differs from HashSet in that it maintains a doubly-linked list running through all of its entries.

I can't find any double-linked list in LinkedHashSet class. Can somebody help?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Yeah, it's a bit wonky when you look at the source without drilling down. Notice it calls that package protected HashSet constructor that takes a meaningless boolean called dummy:

public LinkedHashSet(int initialCapacity, float loadFactor) {
    super(initialCapacity, loadFactor, true);
}

That then uses a LinkedHashMap instead of a HashMap to back the set. Effectively, LinkedHashSet is actually inside HashSet, it's just package protected so you have to use LinkedHashSet to get at it.

link|improve this answer
feedback

The doubly-linked list is on the implementation side, not necessarily exposed for you to get and use.

It keeps the doubly linked list so it can keep track of the order your items are inserted into the set (and also for order of accessing elements in access-order LinkedHashMaps). A regular HashSet has no need for a doubly-linked list since it makes no guarantee about the order of its contents.

They probably included that bit in the javadoc just so you were aware of how they did it, and that there is a little more going on behind the scenes with a LinkedHashSet than a regular HashSet.

You can take a peek at the source code at Google Code Search (you will notice that a LinkedHashSet is actually just wrapped around a LinkedHashMap, but that's not a very important detail).

In the end, it's not a mistake in the javadocs and you shouldn't worry about the fact there is a doubly-linked list working within the LinkedHashSet and LinkedHashMap. We can just merrily take advantage of the LinkedHashMap maintaining order of insertion, paying no mind to what is happening behind the scenes.

link|improve this answer
That what I mean. There is not list in implementation (source code) of LinkedHashSet – Petro Semeniuk Feb 3 '11 at 1:39
1  
@Petro Semenuik That's because it uses a LinkedHashMap. I'll post the source for that too. That's where you'll see the bulk of the magic. – Zach L Feb 3 '11 at 1:41
OMG! Why did they implement things in this way. Is there any design benefits? – Petro Semeniuk Feb 3 '11 at 2:19
@Petro Semenuik I'm not sure what you mean. They used the doubly-linked list to support the insertion order bits -- as well as support modifying the Map/Set based on access. As for wrapping the LinkedHashSet around a LinkedHashMap -- I guess they figured no point in writing the same code twice. – Zach L Feb 3 '11 at 2:31
1  
In Sun JDK 1.6 (didn't check other versions) LinkedHashSet extends HashSet and the LHS constructors call a constructor in HashSet which instantiates the backing map as a LinkedHashMap instead of a HashMap. I believe this is what Petro is referring to. I would speculate Sun did this because the rest of the methods in the HashSet class are merely actions on the backing Map - without any need to call implementation-specific methods - so there is no reason to duplicate this code in both HashSet and LinkedHashSet. – matt b Feb 3 '11 at 3:46
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.