write aprogram which shows the use of hashset and iterator (through enter the value through keyboard )

write aprogram which shows the use of hashset and iterator (through enter the value through keyboard )

write aprogram which shows the use of hashset and iterator (through enter the value through keyboard )

View Answers

February 4, 2011 at 5:37 PM

Use of HashSet and Iterator

The given code read the values using scanner class and stored into the HashSet. It does not allow duplicate values. Iterator class iterates the values and display it.

import java.util.*;

public class HashSetExample {
  public static void main(String [] args) {   
   Scanner input=new Scanner(System.in);
   System.out.println("Enter elements: ");
    int size;
    HashSet <String>set = new HashSet <String>();
    Iterator iterator;
    for(int i=1;i<=5;i++){
    String st=input.next();
    set.add(st);    
    }
    System.out.print("set data: ");  
    iterator = set.iterator();     
    while (iterator.hasNext()){
      System.out.print(iterator.next() + " ");  
    }
    System.out.println();

  }
}









Related Tutorials/Questions & Answers:
write aprogram which shows the use of hashset and iterator (through enter the value through keyboard )
write aprogram which shows the use of hashset and iterator (through enter the value through keyboard )  write aprogram which shows the use of hashset and iterator (through enter the value through keyboard
write a program to create an vector and listeterator.and value should be enter through keyboard.
write a program to create an vector and listeterator.and value should be enter through keyboard.  write a program to create an vector and listeterator.and value should be enter through keyboard
Advertisements
write a program to create an arraylist and listeterator.and value should be enter through keyboard.
write a program to create an arraylist and listeterator.and value should be enter through keyboard.  write a program to create an arraylist and listeterator.and value should be enter through keyboard
write a program to create an vector and listeterator.and value should be enter through keyboard.
write a program to create an vector and listeterator.and value should be enter through keyboard.  write a program to create an vector and listeterator.and value should be enter through keyboard
write a program to create an arraylist and listeterator.and value should be enter through keyboard.
write a program to create an arraylist and listeterator.and value should be enter through keyboard.  write a program to create an arraylist and listeterator.and value should be enter through keyboard
write a program to create an vector and listeterator.and value should be enter through keyboard.
write a program to create an vector and listeterator.and value should be enter through keyboard.  write a program to create an vector and listeterator.and value should be enter through keyboard
write a program to create an arraylist with string(add,remove) operation.and value should be enter through keyboard.
write a program to create an arraylist with string(add,remove) operation.and value should be enter through keyboard.  write a program to create an arraylist with string(add,remove) operation.and value should be enter through
write a program to create an vector with string(add,remove) operation.and value should be enter through keyboard.
write a program to create an vector with string(add,remove) operation.and value should be enter through keyboard.  write a program to create an vector with string(add,remove) operation.and value should be enter through keyboard
write a program to create an arraylist with string(add,remove) operation.and value should be enter through keyboard.
write a program to create an arraylist with string(add,remove) operation.and value should be enter through keyboard.  write a program to create an arraylist with string(add,remove) operation.and value should be enter through
write a program to remove the element from hashset using keyboard.
write a program to remove the element from hashset using keyboard.  write a program to remove the element from hashset using keyboard
Example of Hashset iterator method in java.
Example of Hashset iterator method in java. In this exmple of HashSet class,  you will see the use of iterator() method. It is used for traversing all element from HashSet. Code:  HashSetRemoveElement.java package
Velocity Iterator Tool Example
Velocity Iterator Tool Example       This Example shows you how to use Iterator in velocity ...:- Initialize velocity run time engine through method  init(). 2:- Create object
HashSet Example
; In this section we are discussing HashSet with example code that shows... want to delete any element, use the remove() method which takes index as parameter. In order to remove all data from the HashSet use clear() method. When
Example of HashSet class in java
unique. You can not store duplicate value. Java hashset example. How.... Example of Hashset iterator method in java. Example of Hashset size() method...Example of HashSet class in java. In this part of tutorial, we
jQuery auto complete through database using JSP shows error
jQuery auto complete through database using JSP shows error  The tutorial on jQuery titled "jQuery auto complete through database using JSP" shows error on browser when I try to select the one in the dropdown. Please help
Collection : HashSet Example
time. It does not allow duplicate value. HashSet does not provide any its own...Collection : HashSet Example This tutorial contains description of HashSet with example. HashSet  : HashSet class extends AbstractSet class
HashSet In Java
HashSet is required to be synchronized explicitly. You may use...HashSet In Java In this section we will read about HashSet in Java. HashSet is a class of java.util package which extends an AbstractSet and implements
Iterator in Java Example
Iterator in Java Example We are going to discuss about iterator in java. Iterator is an interface in the collection framework and it works similar to the Enumeration. The java iterator traverse through all the elements
What is HashSet in java
for HashSet method.hashSet stored only object HashSet class in java.util package. The HashSet does not accept duplicate value. HashSet has many available methods like...In following example we will discuss about HashSet in Java. The HashSet class
iterate through map and write the content in a separate file
iterate through map and write the content in a separate file  I am trying to save the data from file to a map, then iterate through map and write... through the above file and save it in maps depending on if it is a concept
iterate through map and write the content in a separate file
iterate through map and write the content in a separate file  I am trying to save the data from file to a map, then iterate through map and write... through the above file and save it in maps depending on if it is a concept
iterate through map and write the content in a separate file
iterate through map and write the content in a separate file  I am trying to save the data from file to a map, then iterate through map and write... through the above file and save it in maps depending on if it is a concept
Java HashSet  - Java Tutorials
Java Collections Framework- HashSet Class A HashSet is a collection set... is used to determine a unique value, called its hash code. The hash code is then used as an index at which the data associated with the key is stored
Define and use Macro in Velocity
Define and use Macro in Velocity       This Example shows you how to define and use macro in velocity  template and also shows how to use Iterator in velocity  template
Write a program that (algorithmically) shows a times table.(convert integers to strings, format text, nested loops)
Write a program that (algorithmically) shows a times table.(convert integers to strings, format text, nested loops)   Write a java program that (algorithmically) shows a times table.(convert integers to strings, format text
write a java program for pagination which will be configured by end user
write a java program for pagination which will be configured by end user  write a java program for pagination which will be configured by end user
write a java program for pagination which will be configured by end user
write a java program for pagination which will be configured by end user  write a java program for pagination which will be configured by end user  
Java Set Iterator
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 Java Set Iterator
writing aprogram - Java Beginners
writing aprogram  Write a program to reverse any string  Hi Friend, Try the following code: import java.util.*; class StringReverse...); System.out.println("Enter string:"); String st=input.nextLine(); StringBuffer
write a program which asks the user for two int values and calculates their sum.
write a program which asks the user for two int values and calculates their sum.  The title says it all, an example is (1,2) > 3
WRITE A PROGRAM TO PRINT OUT THE NUBERS 10 THROUGH 49
WRITE A PROGRAM TO PRINT OUT THE NUBERS 10 THROUGH 49   write a program to print out the number 10 through 49 in the following manner 10 11 12 13 ......19 20 21..............29 30 31..............39 40 4142............49
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
Write an Applet which display current date and time on the web page??
Write an Applet which display current date and time on the web page??  Write an Applet which display current date and time on the web page??  Here is an applet code that display date and time. import java.applet.
Write an Applet which display current date and time on the web page??
Write an Applet which display current date and time on the web page??  Write an Applet which display current date and time on the web page?  Here is an applet code that display date and time. import java.applet.
Can not input value into text field which use sx:datetimepicker
Can not input value into text field which use sx:datetimepicker  I am... value from calendar, it runs normal. But i input value from keyboard by hands and then i move focus to other element, that value is lost. Thus, i can not input
What is an Iterator?
is iterator? In this programming tutorial it explain how to use the iterator interface with examples. visit to http://www.roseindia.net/tutorial/java/iterator...What is an Iterator?  Hi, What is an Iterator? Please help me
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
Can not input value into text field which use sx:datetimepicker
Can not input value into text field which use sx:datetimepicker  I am..." cssStyle="font-size:13.5px" accesskey="true" />"); I input value from calendar, it runs normal. But i input value from keyboard by hands and then i move focus
Write Keys and Values to the Properties file in Java
how to write keys and values in the properties files through the Java program... value has to be entered which has to be written to the properties file. Here... InputStreamReader(System.in));         System.out.println("Enter file name which has
Java Hashmap Iterator
Java HashMap Iterator is a collection class. It implements the Map interface. It keeps the data in the key and value form. Java HashMap has no iterator method. So use the entrySet() method.It returns the data in Set object form
Custom Iterator Tag in JSP
a Custom Iterator Tag here which will iterate for the number of times, in its attribute... Custom Iterator Tag in JSP       Example program to make custom iterator tag in JSP
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 Hashtable Iterator
in the key and value form. Like hasmap, it has no iterator() method. Use the entrySet... be traversed by the Iterator. Java Hashtable Iterator Example import..."); hastab.put("e", "era"); Set s = hastab.entrySet(); Iterator
Iterator tag example of struts2.2.1
to about the iterator tag. Iterator tag is used to iterate over a value. An iterable value can be either of: java.util.Collection, java.util.Iterator. We use... <s:iterator value="obList">
Iterator in java
Iterator in java In this section you will learn about Iterator in java.  In order to cycle through the element of collection, iterator is used... are traversed based on index but Iterator in java is to traverse through object as well
Assign value from a <bean:write> tag to a variable
Assign value from a tag to a variable  I am calling a stored procedure from JSP page which needs an input parameter. This input parameter needs to get the value from bean write tag . How can i do that ?   Please go
Java collection HashSet and TreeSet
Java collection HashSet and TreeSet   How can we used HashSet...("A"); //A is a duplicate value System.out.println("Set is " + set1... implementation of the interface in order to use it. Here Set is implemented by its
How to remove all element from Hashset.
How to remove all element from Hashset. HashSet is set type Collection. It supports only unique value. We can not store duplicate value in  it .In this example, you will see the use of clear method of HashSet. It is used to remove
Java For loop Iterator
Iterator can be used with the for loop also. Initialization of the Iterator is done before the for loop. Iterator has boolean value with the hasNext method. So no increment/decrement is required. Java for Loop Iterator
Java HashMap iterator and example
Java HashMap Iterator is an interface. It keeps the data in the key and value form. It is implemented by HashMap. hashMap doesnot have iterator method. So use the entrySet() method to get the data in Set object form. Set's all

Ads