Thursday, May 25, 2023

Difference between TreeSet, LinkedHashSet and HashSet in Java with Example

TreeSet, LinkedHashSet, and HashSet all are implementation of the Set interface and by virtue of that, they follow the contract of Set interface i.e. they do not allow duplicate elements. Despite being from the same type of hierarchy,  there are a lot of differences between them; which is important to understand, so that you can choose the most appropriate Set implementation based upon your requirement. By the way difference between TreeSet and HashSet or LinkedHashSet is also one of the popular Java Collection interview questions, not as popular as Hashtable vs HashMap or ArrayList vs Vector but still appears in various Java interviews.

In this article, we will see the difference between HashSet, TreeSet, and LinkedHashSet on various points e.g. Ordering of elements, performance, allowing null, etc and then we will see When to use TreeSet or LinkedHashSet or simply HashSet in Java.

Difference between TreeSet, LinkedHashSet, and HashSet in Java

TreeSet, LinkedHashSet, and HashSet in Java are three Set implementations in the collection framework and like many others they are also used to store objects. The main feature of TreeSet is sorting,  LinkedHashSet is insertion order and HashSet is just general purpose collection for storing objects. 

HashSet is implemented using HashMap in Java while TreeSet is implemented using TreeMapTreeSet is a SortedSet implementation that allows it to keep elements in the sorted order defined by either Comparable or Comparator interface

Comparable is used for natural order sorting and Comparator for custom order sorting of objects, which can be provided while creating an instance of TreeSet

Anyway before seeing difference between TreeSet, LinkedHashSet, and HashSet, let's see some similarities between them:



1) Duplicates: All three implements Set interface means they are not allowed to store duplicates.

2) Thread safety: HashSet, TreeSet and LinkedHashSet are not thread-safe, if you use them in multi-threading environment where at least one Thread  modifies Set you need to externally synchronize them.

3) Fail-Fast Iterator : Iterator returned by TreeSet, LinkedHashSet and HashSet are fail-fast Iterator. i.e. If Iterator is modified after its creation by any way other than Iterators remove() method, it will throw ConcurrentModificationException with best of effort. read more about fail-fast vs fail-safe Iterator here


Now let’s see the difference between HashSet, LinkedHashSet, and TreeSet in Java :

1. Performance and Speed

The first difference between them comes in terms of speed.  HashSet is fastest, LinkedHashSet is second on performance or almost similar to HashSet but TreeSet is a bit slower because of the sorting operation it needs to perform on each insertion. TreeSet provides guaranteed O(log(n)) time for common operations like add, remove, and contains, while HashSet and LinkedHashSet offer constant-time performance e.g. O(1) for add, contains, and remove given hash function uniformly distribute elements in the bucket.

2. Ordering

HashSet does not maintain any order while LinkedHashSet maintains insertion order of elements much like List interface and TreeSet maintains sorting order or elements.


3. Internal Implementation

HashSet is backed by a HashMap instance, LinkedHashSet is implemented using HashSet and LinkedList while TreeSet is backed up by NavigableMap in Java and by default it uses TreeMap.

4. null

Both HashSet and LinkedHashSet allows null but TreeSet doesn't allow null but TreeSet doesn't allow null and throw java.lang.NullPointerException when you will insert null into TreeSet. Since TreeSet uses compareTo() method of respective elements to compare them  which throws NullPointerException while comparing with null, here is an example:

TreeSet cities
Exception in thread "main" java.lang.NullPointerException
        at java.lang.String.compareTo(String.java:1167)
        at java.lang.String.compareTo(String.java:92)
        at java.util.TreeMap.put(TreeMap.java:545)
        at java.util.TreeSet.add(TreeSet.java:238)

5. Comparison
HashSet and LinkedHashSet uses equals() method in Java for comparison but TreeSet uses compareTo() method for maintaining ordering. That's why compareTo() should be consistent to equals in Java. failing to do so break general contact of Set interface i.e. it can permit duplicates.

And, if you like to see the difference in tabular format, here is a nice table which highlights the key difference between TreeSet, LinkedHashSet, and HashSet in Java

Difference between TreeSet, LinkedHashSet and HashSet in Java with Example



TreeSet vs HashSet vs LinkedHashSet - Example

TreeSet vs HashSet vs LinkedHashSet in Java with ExampleLet’s compare all these Set implementation on some points by writing Java program. In this example we are demonstrating difference in ordering, time taking while inserting 1M records among TreeSet, HashSet and LinkedHashSet in Java. 

This will help to solidify some points which discussed in earlier section and help to decide when to use HashSet, LinkedHashSet or TreeSet in Java.

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.Set;
import java.util.TreeSet;

/**
 * Java program to demonstrate difference between TreeSet, HashSet and LinkedHashSet
 * in Java Collection.
 * @author
 */

public class SetComparision {
 
   
public static void main(String args[]){            
        HashSet
<String> fruitsStore = new HashSet<String>();
        LinkedHashSet
<String> fruitMarket = new LinkedHashSet<String>();
        TreeSet
<String> fruitBuzz = new TreeSet<String>();
     
       
for(String fruit: Arrays.asList("mango", "apple", "banana")){
            fruitsStore.
add(fruit);
            fruitMarket.
add(fruit);
            fruitBuzz.
add(fruit);
       
}
       
        //no ordering in HashSet – elements stored in random order
        System.
out.println("Ordering in HashSet :" + fruitsStore);

        //insertion order or elements – LinkedHashSet storeds elements as insertion
        System.
err.println("Order of element in LinkedHashSet :" + fruitMarket);

        //should be sorted order – TreeSet stores element in sorted order
        System.
out.println("Order of objects in TreeSet :" + fruitBuzz); 
     

        //Performance test to insert 10M elements in HashSet, LinkedHashSet and TreeSet
        Set
<Integer> numbers = new HashSet<Integer>();
       
long startTime = System.nanoTime();
       
for(int i =0; i<10000000; i++){
            numbers.
add(i);
       
}

       
long endTime = System.nanoTime();
        System.
out.println("Total time to insert 10M elements in HashSet in sec : "
                            + (endTime - startTime));
     
     
       
// LinkedHashSet performance Test – inserting 10M objects
        numbers = new LinkedHashSet<Integer>();
        startTime = System.
nanoTime();
       
for(int i =0; i<10000000; i++){
            numbers.
add(i);
       
}
        endTime = System.
nanoTime();
        System.
out.println("Total time to insert 10M elements in LinkedHashSet in sec : "
                            + (endTime - startTime));
       
        // TreeSet performance Test – inserting 10M objects
        numbers =
new TreeSet<Integer>();
        startTime = System.
nanoTime();
       
for(int i =0; i<10000000; i++){
            numbers.
add(i);
       
}
        endTime = System.
nanoTime();
        System.
out.println("Total time to insert 10M elements in TreeSet in sec : "
                            + (endTime - startTime));
   
}
}

Output
Ordering in HashSet :
[banana, apple, mango]
Order of element in LinkedHashSet
:[mango, apple, banana]
Order of objects in TreeSet :[apple, banana, mango]
Total time to insert 10M elements in HashSet in sec :
3564570637
Total time to insert 10M elements in LinkedHashSet in sec :
3511277551
Total time to insert 10M elements in TreeSet in sec :
10968043705



When to use HashSet, TreeSet and LinkedHashSet in Java

Since all three implements Set interface they can be used for common Set operations like not allowing duplicates but since HashSet, TreeSet and LinkedHashSet has there special feature which makes them appropriate in certain scenario. 

Because of sorting order provided by TreeSet, use TreeSet when you need a collection where elements are sorted without duplicates. HashSet are rather general purpose Set implementation, Use it as default Set implementation if you need a fast, duplicate free collection.

While LinkedHashSet is extension of HashSet and its more suitable where you need to maintain insertion order of elements, similar to List without compromising performance for costly TreeSet

Another use of LinkedHashSet is for creating copies of existing Set, Since LinkedHashSet preservers insertion order, it returns Set which contains same elements in same order like exact copy. 

In short,  although all three are Set interface implementation they offer distinctive feature, HashSet is a general purpose Set while LinkedHashSet provides insertion order guarantee and TreeSet is a SortedSet which stores elements in sorted order specified by Comparator or Comparable in Java.


How to copy object from one Set to other

Here is code example of LinkedHashSet which demonstrate How LinkedHashSet can be used to copy objects from one Set to another without losing order. You will get exact replica of source Set, in terms of contents and order. Here static method copy(Set source) is written using Generics, This kind of parameterized method provides type-safety and help to avoid ClassCastException at runtime.

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedHashSet;
import java.util.Set;

/**
 * Java program to copy object from one HashSet to another using LinkedHashSet.
 * LinkedHashSet preserves order of element while copying elements.
 *
 * @author Javin
 */

public class SetUtils{
   
    public static void main(String args[]) {
       
        HashSet<String> source = new HashSet<String>(Arrays.asList("Set, List, Map"));
        System.out.println("source : " + source);
        Set<String> copy = SetUtils.copy(source);
        System.out.println("copy of HashSet using LinkedHashSet: " + copy);
    }
   
    /*
     * Static utility method to copy Set in Java
     */

    public static <T> Set<T> copy(Set<T> source){
           return new LinkedHashSet<T>(source);
    }
}
Output:
source : [Set, List, Map]
copy of HashSet using LinkedHashSet: [Set, List, Map]


Always code for interface than implementation so that you can replace HashSet to LinkedHashSet or TreeSet when your requirement changes. That’s all on the difference between HashSet, LinkedHashSet, and TreeSet in Java.  If you know any other significant difference between TreeSet, LinkedHashSet, and HashSet which is worth remembering then please add as a comment.


Other tutorials from Java Collection Framework

11 comments :

Anonymous said...

How the linkedhashset maintens order internally? Doesn't it breach the hashing principle?

Anonymous said...

I believe HashSet(O(1)) performs better than LinkedHashSet( hashing like hashtable and seperate Linkedlist for ordering), please advise if my understanding is wrong ..?

Sekar said...

HashSet (implemented using HashTable) performs slightly better than LinkedHashSet (implemented using HashTable and doubly linked list) as per Oracle doc.
http://docs.oracle.com/javase/6/docs/api/java/util/LinkedHashSet.html

Deepak said...

Treeset allows one null at very 1st time ..

TreeSet StrTree = new TreeSet();

StrTree.add(null);

because , may be it is not comparing for 1st time as tree set is empty.

Anonymous said...

@deepak i tried inserting null. It gives null pointer exception.

Anonymous said...

SortedSet like TreeSet are great if you need to keep your elements sorted, but if you just want to maintain insertion order, you should use a LinkedHashSet. This is great because add(), contains() and remove() are still O(1) operations (like HashSet), unlike with the SortedSet, in which they are presumably O(logN). This is the reason, I use TreeSet only if I need to maintain custom ordering defined by Comparator or Comparable.

Unknown said...

@Deepak,
Prior to Java 5, TreeSet allowed atmost one NULL value.
From Java 5, TreeSet does not support NULL values anymore.

gillbc said...

So HashSet has no order, LinkedHashSet has order of insertion, TreeSet has natural order? In all three, no duplicates are allowed and no nulls?

Pratyush said...

Tks

Anonymous said...

HashSet source = new HashSet(Arrays.asList("Set, List, Map"));

This line is essentially creating only one entry in the source HashSet as - "Set, List, Map".. isn't it? Shouldn't it be as below to prove the point:

HashSet source = new HashSet(Arrays.asList("Set", "List", "Map"));

Please correct me if I am wrong on this one.

Also, thank you so much for the awesome explanation btw..

javin paul said...

Hello Annonymous, you are completely correct. That just the typo and it will create one entry. THe right way to do is, as you suggested
HashSet source = new HashSet(Arrays.asList("Set", "List", "Map"));
which will create three String elements.

Post a Comment