Java TreeSet

 

TreeSet

 

public class TreeSet<E>
    extends AbstractSet<E>
        implements SortedSet<E>, Cloneable, Serializable
 


 

Below is a TreeSet Example showing how collections are manipulated using a TreeSet


import java.util.Set;
import java.util.TreeSet;
import java.util.Iterator;



public class TreeSetExample {


    public static void doTreeSetExample() {}

    public static void main(String[] args) {

        Set treeSet = new TreeSet();

//        the treeset stores Integer objects into the TreeSet
        for (int i = 0; i < 5; i++) {
            treeSet.add(new Integer(i));
        }
        
//        Since its a Integer Object Set adding any other elements in the Same set will produce a 
//        ClassCastException exception at runtime. 
//        treeSet.add("a string");
        
        System.out.print("The elements of the TreeSet are : ");

        Iterator i = treeSet.iterator();
        while (i.hasNext()) {
            System.out.print(i.next()+"\t");
        }

    }

}

     

Output

The elements of the TreeSet are : 0 1 2 3 4

Download TreeSetExample.java