Files
Adv_java/TreeSet18b.java

16 lines
402 B
Java
Raw Normal View History

2026-02-12 15:07:02 +05:30
// write a java code to demonstrate treeset
import java.util.*;
public class TreeSet18b {
public static void main(String args[]){
TreeSet<String> home = new TreeSet<String>();
home.add("Hall Room");
home.add("Bed Room");
home.add(null);
home.add("Bed Room");
home.add("Kitchen");
Iterator<String> itr = home.iterator();
while(itr.hasNext()){
System.out.println(itr.next());
}
}
}