Home Answers Viewqa Java-Beginners Java collection HashSet and TreeSet

 
 


Naulej kumar
Java collection HashSet and TreeSet
1 Answer(s)      a year ago
Posted in : Java Beginners

How can we used HashSet and TreeSet in the both Example?

View Answers

June 22, 2012 at 6:11 PM


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


 public class SetsExample{
 public static void main(String args[]){
     Set<String> set1 = new HashSet<String>();
     set1.add("B");
     set1.add("A");
     set1.add("C");
     set1.add("A"); //A is a duplicate value
     System.out.println("Set is " + set1);
     set1.remove("C");
     System.out.println("Set1 after removing c is " + set1);
     int size=set1.size();
     System.out.println("Size of set1 after adding duplicate item is " + size);
     System.out.println("Is set1 contains a " + set1);
     System.out.println("Is set1 contains c " + set1.contains("C"));
     Set<String> set2 = new TreeSet<String>();
     set2.add("E");
     set2.add("F");
     set2.add("G");
     System.out.println("Set2 is " + set2);
     set2.addAll(set1);
     System.out.println("Set2 is after mergine set1 element " + set2);
     set2.removeAll(set1);
     System.out.println("Set is after deleting set1 element " + set2);
     set2.addAll(set1);
     set2.retainAll(set1);
     System.out.println("Set2 is after deleting all element except set1 element " + set2);

 }
}

Output:-

Set is [A, B, C]
Set1 after removing c is [A, B]
Size of set1 after adding duplicate item is 2
Is set1 contains a [A, B]
Is set1 contains c false
Set2 is [E, F, G]
Set2 is after mergine set1 element [A, B, E, F, G]
Set is after deleting set1 element [E, F, G]
Set2 is after deleting all element except set1 element [A, B]

Description:- The above example demonstrates you the Set interface. Since Set is an interface, you need to instantiate a concrete implementation of the interface in order to use it. Here Set is implemented by its two subclasses HashSet and TreeSet. Now using the add() method, we have added elements to HashSet. Set does not accept duplicate values. So here we have checked whether the added elements are duplicate or not. Then we have removed one Element from the HashSet by using the method remove(). Now we have created another object by implementing Set-using TreeSet and add elements to the tree set. Using the addAll() method, we have added the elements of set1 to set2 and using the method removeAll(), we have removed all elements from set2.









Related Pages:
Java collection HashSet and TreeSet
Java collection HashSet and TreeSet   How can we used HashSet and TreeSet in the both Example?   import java.util.HashSet; import... two subclasses HashSet and TreeSet. Now using the add() method, we have added
Java Collection-TreeSet
Java Collection-TreeSet  What is TreeSet in Java Collection?  ...){ TreeSet ts = new TreeSet(); ts.add("B"); ts.add("D...:- The above program demonstrates you the concept of TreeSet. Here we have created
Java collection HashSet
Java collection HashSet  How can we use HashSet in java program?   The hashSet class is used to create a collection and store it in a hash table. Each collection refer to a unique value. import java.util.Collections
Java HashSet Collection problem
Java HashSet Collection problem  Here's how the HashSet works... the concept behind this??   In your code, HashSet stores the values...;Prac>(); So, while adding the object of Prac using add method of hashset, it get
Java Collection : TreeSet Example
Java Collection : TreeSet Example This tutorial contains description of  TreeSet with example. TreeSet  : TreeSet class is defined in java.util... constructor - TreeSet(), TreeSet(Collection c), TreeSet(Comparator c
program for HashSet - Java Beginners
of HashSet. can u please suggest me a way out.  Hi friend, A set is a collection interface. It is connot contain any dublicate element. The Set and SortedSet intefaces describe the properties of sets and the HashSet
Java HashSet  - Java Tutorials
Java Collections Framework- HashSet Class A HashSet is a collection set...;  HashSet(Collection c) HashSet(int capacity) HashSet(int capacity, float... a collection that uses a hash table for storage. Hash table stores information by using
Example of HashSet class in java
Example of HashSet class in java. In this part of tutorial, we will introduce you to about the HashSet class.  It is collection. It stores only unique. You can not store duplicate value. Java hashset example. How
Java hashset example.
Java hashset example.     HashSet is a collection. You can not store duplicate value in HashSet. In this java hashset exmple, you will see how to create HashSet in java application and how to store value in Hashset
HASHSET - Java Interview Questions
HASHSET  How To Sort HashSet?I Want Source Code?   Hi... HashSetExample{ public static void main (String args[]){ Set set = new HashSet..."); set.add("Simran"); Set sortedSet= new TreeSet(set); System.out.println(sortedSet
Java TreeSet
Java TreeSet       The Collection Framework provides two general-purpose implementations of the set... elements from a collection in a sorted manner.  TreeSet is not synchronized
TreeSet
TreeSet We will discus about treeSet() method. The treeSet implement the Set interface. we have stored collection of data and data order of element. We...(), comparator(),Object toElement), tailSet(Object fromElement). TreeSet method
What is HashSet in java
In following example we will discuss about HashSet in Java. The HashSet class... add(), remove(),size() and test the element of the collection. The HashSet...( ) HashSet(Collection x) HashSet(int capacity) The HashSet() constructor
HashSet Example
the methods to add, remove and iterate the values of collection. A HashSet... are performing various operations on HashSet collection. We have explained the steps to add...; To insert an element in the HashSet collection add() method is used. The size
Collection Interface
Java NotesCollection Interface The Collection interface is the parent... has an ordering (eg, List and TreeSet so, HashSet doesn't). i = coll.size... for identifiers in the table below: Collection coll; boolean b; Object obj; int i
Collection Interface
Java NotesCollection Interface The Collection interface is the parent... has an ordering (eg, List and TreeSet so, HashSet doesn't). i = coll.size... for identifiers in the table below: Collection coll; boolean b; Object obj; int i
Collection : HashSet Example
Collection : HashSet Example This tutorial contains description of HashSet with example. HashSet  : HashSet class extends AbstractSet class.... Example : Here is HashSet() example - package collection; import
collection
collection  As we know array holds the similar kind of elements, then in collection how toArray() method will convert the collection having different objects as elements to an array in java
Example of Hashset size() method in java.
Example of Hashset size() method in java. The size() is a method of HashSet class. It is used to calculte the size of HashSet. The size of method is equal to total number of elements in HashSet Code: 
HashMap/HashSet - Java Beginners
HashMap/HashSet  im working on a game, and i want to know how does the code for HashMap and HashSet work or can you give me the code that needs to be included in the game engine. I have the exam on monday. Can you please help
Collection
Collection  i need a collections examples   Please visit the following links: http://www.roseindia.net/javacodeexamples/index.shtml http://www.devmanuals.com/tutorials/java/collections
Collection of Large Number of Java Sample Programs and Tutorials
Collection of Large Number of Java Sample Programs and Tutorials Java Collection Examples Java 6.0 New Features (Collection Framework... will read the advantages and disadvantages of Java Collection Framework
Java collection LinkedHashSet
Java collection LinkedHashSet  How can we use LinkedHashSet in java collection?   import java.util.Iterator; import...("HashSet"); ht.add('R'); ht.add("List"); ht.remove
Example of contains method of hashset in java.
Example of contains method of hashset in java. The contains() is a method of hashset. It is used for checking that the given number is available in hashset or not. It returns only boolean value.If number is present in hashset
Example of toArray() method of hashset in java.
Example of toArray() method of hashset in java. The toArray() is a method of HashSet in java. It is used to create array of object. It is also used to copy all element of hashset into array of object. Code: 
java collection - Development process
java collection - creating and comparing lists using Java  How to compare two list in java? and i have to create two more list from old two list. Comparing and Creating new list in Java Java Example code for creating
Example of Hashset iterator method in java.
Example of Hashset iterator method in java. In this exmple of HashSet class... element from HashSet. Code:  HashSetRemoveElement.java package... RemoveAllElement { public static void main(String[] arg) { HashSet obHashSet = new
Java Collection API - Java Tutorials
Java Collection API Collection was added to Java with J2SE 1.2 release. Collection framework is provided in 'java.util.package'. All collections... of the collection interfaces. Also, they are reusable data structures. Algorithms
Collections Exercise 2 - State Capitals
Java: Collections Exercise 2 - State Capitals Name ____________________________________ For the purposes of this exercise, the only data structures that need to be considered are: array, ArrayList, LinkedList, HashSet, TreeSet
"TreeSet" example in JRuby
tutorials we have learned about how to use Java classes in JRuby program now here is one more example that uses Java class TreeSet.  In this example we have... of TreeSet class. To add elements in this TreeSet object we have used add
Collections Exercise 1 - Unique Components
Java: Collections Exercise 1 - Unique Components Name ____________________________________ For the purposes of this exercise, the only data structures that need to be considered are: array, ArrayList, LinkedList, HashSet, TreeSet
How to remove all element from Hashset.
How to remove all element from Hashset. HashSet is set type Collection...; it .In this example, you will see the use of clear method of HashSet. It is used to remove all element of hashset. Code:  HashSetRemoveElement.java
Collection framework
Example!\n" ); //int size; HashSet collection = new HashSet(); String str1...; HashSet collection = new HashSet(); String str1 = "Y",str2 = "W", str3...Collection framework  import java.util.*; public class CollectFrame
Java Collection
Java Collection  What is the Collection interface
Set Interface
-purpose Set implementation-classes:   HashSet  TreeSet  ... a collection in a sorted manner. The elements added to a TreeSet are sortable... the collection to a TreeSet for sorted traversal.  LinkedHashSet
Collection in java
Collection in java  What are the meaning of the letters E,T,K and V that come in the collection concept
Java collection
Java collection  What are differences between Enumeration, ArrayList, Hashtable and Collections and Collection
Collection framework
Collection framework  what are the real life examples of using Collection in java
Introduction to collection Implementations
Introduction to collection Implementations  ... the collection interfaces.  Implementations are also responsible for documenting... of the Java platform support all of the optional operations. The following kinds
Collection Iterate Example
Collection Iterate Example     ... of interface Iterator in Java. The description of the code is given below... the hasNext() method through the following java program. True is return
Jaca Collection
Jaca Collection  does Java collection allow incompatible types to be stored in single collection
Java collection
Java collection  What are differences between Enumeration, ArrayList, Hashtable and Collections
Java Collection
Java Collection  What are Vector, Hashtable, LinkedList and Enumeration
garbage collection
garbage collection  how to use garbage collection in program using core java
Garbage collection
Garbage collection  why garbage collection? How it works?   Garbage collection is one of the most important features of Java. The purpose... collection is also called automatic memory management. In Java, it is good idea
Set<E> interface
HashSet with elements from the Collection coll SortedSet interface methods... Java: Set<E> interface Only one. Sets are collections that allow...; interface has all Collection<E> interface methods Sets implement all Collection
Java Set iterator with example
Java Set Interface keeps the data without duplicate value. Its one subtype Treeset always returns sorted data. But the subtype HashSet doesnot return sorted data. It uses iterator() method to traverse the data Example of Java
Java Set Iterator
Treeset always returns sorted data. But the subtype HashSet doesnot return sorted data. It uses iterator() method to traverse the data Java Set Iterator...(String[] args) { Set s = new HashSet(); s.add("car
SCJP Module-9 Question-8
;Integer> nset = new TreeSet(mylist); System.out.println(nset.headSet(10
Java garbage collection
Java garbage collection  What is Garbage Collection and how to call it explicitly