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: Get the element in a tree set which is less than or equal to the given element

Java Collection, TreeSet Exercises: Exercise-11 with Solution

Write a Java program to get the element in a tree set which is less than or equal to the given element.

Sample Solution:

Java Code:

import java.util.TreeSet;
import java.util.Iterator;
  public class Exercise11 {
  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("Less than or equal to 86 : "+tree_num.floor(86));
   System.out.println("Less than or equal to 29 : "+tree_num.floor(29));
   }    
}

Sample Output:

Less than or equal to 86 : 82                                          
Less than or equal to 29 : 25

Flowchart:

Flowchart: Get the element in a tree set which is less than or equal to the given element

Java Code Editor:

Contribute your code and comments through Disqus.

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

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