Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Collection, TreeSet Exercises: Iterate through all elements in a tree set

Java Collection, TreeSet Exercises: Exercise-2 with Solution

Write a Java program to iterate through all elements in a tree set.

Sample Solution:

Java Code:

import java.util.TreeSet;
public class Exercise2 {
  public static void main(String[] args) {
  TreeSet<String> tree_set = new TreeSet<String>();
  tree_set.add("Red");
  tree_set.add("Green");
  tree_set.add("Orange");
  tree_set.add("White");
  tree_set.add("Black");
  // Print the tree list
  for (String element : tree_set) {
    System.out.println(element);
    }
 }
}

Sample Output:

Black                                                                  
Green                                                                  
Orange                                                                 
Red                                                                    
White 

Flowchart:

Flowchart: Iterate through all elements in a tree set

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Create a new tree set, add some colors and print out the tree set.
Next: Add all the elements of a specified tree set to another tree set.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe