w3resource

Java: Get an element in a tree set which is strictly greater than the given element

Java Collection, TreeSet Exercises: Exercise-12 with Solution

Write a Java program to get the element in a tree set strictly greater than or equal to the given element.

Sample Solution:

Java Code:

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

  public class Exercise12 {
  public static void main(String[] args) {
 // creating TreeSet 
   TreeSet <Integer>tree_num = new TreeSet<Integer>();
   TreeSet <Integer>treeheadset = new TreeSet<Integer>();
     
   // Add numbers in the tree
   tree_num.add(10);
   tree_num.add(22);
   tree_num.add(36);
   tree_num.add(25);
   tree_num.add(16);
   tree_num.add(70);
   tree_num.add(82);
   tree_num.add(89);
   tree_num.add(14);
   
   System.out.println("Strictly greater than 76 : "+tree_num.higher(76));
   System.out.println("Strictly greater than 31 : "+tree_num.higher(31));
   }    
}

Sample Output:

Strictly greater than 76 : 82                                          
Strictly greater than 31 : 36

Flowchart:

Flowchart: Get an element in a tree set which is strictly greater than the given element

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Get the element in a tree set which is less than or equal to the given element.
Next: Get an element in a tree set which is strictly less than the given element.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.