


TreeSet is a class in the Java Collection Framework that implements the SortedSet interface. It stores elements in ascending order and does not allow duplicate values, so access and retrieval times become faster. Because of this excellent functionality, TreeSets are often used to store large amounts of information that need to be searched quickly. We will use the Comparable interface to sort a given TreeSet and then, using built-in methods, try to get the highest and lowest value elements from that TreeSet.
Java program to get the highest and lowest value elements from a TreeSet
Before entering the program, let us first familiarize ourselves with some concepts
Similar interface
This interface is useful when we want to sort custom objects in their natural order. For example, it sorts strings lexicographically and numbers numerically. This interface is available in the "java.lang" package. Generally speaking, the classes and interfaces defined in this package are available to us by default, so there is no need to import this package explicitly.
grammar
class nameOfclass implements Comparable<nameOfclass>
Here, class is the keyword to create a class, and implements is the keyword that allows the use of the functions provided by the interface.
compareTo()
The Comparable interface only defines a method called "CompareTo" which can be overridden to sort a collection of objects. It provides the ability to compare objects of a class with itself. Returns 0 when the "this" object is equal to the passed object, a positive value if the "this" object is greater, and a negative value otherwise.
grammar
compareTo(nameOfclass nameOfobject);
last() and first() methods
Both methods are used with TreeSet objects and take no parameters. The ‘last()’ method returns the end element of the specified TreeSet, and the ‘first()’ method returns the element at the first position. Since a TreeSet stores its elements in ascending order, the last element is considered as the highest value element and vice versa as the lowest value element.
method
First, import the "java.util" package so that we can use TreeSet
Create a class "Cart" that implements Comparable Interface. In it declare two variables and define the constructor of the class and the two parameters "item" and "price" of type string and integer respectively.
Define the "compareTo" method along with an object of the "Cart" class as a parameter to compare the "this" object with the newly created object.
Now, in the main() method, declare an object named "trSet" of class "Cart" of collection type TreeSet and add the details of the object using the inbuilt method named "add()" Store to collection.
Finally, call the built-in methods "last()" and "first()" to obtain the highest and lowest values respectively.
Example
The following example demonstrates how to find the highest and lowest value elements from a TreeSet.
import java.util.*; public class Cart implements Comparable <Cart> { String item; int price; Cart(String item, int price) { // constructor // this keyword shows these variables belong to constructor this.item = item; this.price = price; } // overriding method public int compareTo(Cart comp) { if(this.price > comp.price) { // performing comparison return 1; } else { return -1; } } public String toString() { return "Item: " + this.item + ", Price: " + this.price; } public static void main(String[] args) { // Declaring collection TreeSet TreeSet <Cart> trSet = new TreeSet <Cart>(); // Adding object to the collection trSet.add(new Cart("Rice", 59)); trSet.add(new Cart("Milk", 60)); trSet.add(new Cart("Bread", 45)); trSet.add(new Cart("Peanut", 230)); trSet.add(new Cart("Butter", 55)); // to print the objects for (Cart print : trSet) { System.out.println("Item: " + print.item + ", " + "Price: " + print.price); } // calling in-built methods to print required results System.out.println("Element having highest value: " + trSet.last()); System.out.println("Element having lowest value: " + trSet.first()); } }
Output
Item: Bread, Price: 45 Item: Butter, Price: 55 Item: Rice, Price: 59 Item: Milk, Price: 60 Item: Peanut, Price: 230 Element having highest value: Item: Peanut, Price: 230 Element having lowest value: Item: Bread, Price: 45
in conclusion
We first defined the TreeSet class of the Java Collection Framework. In the next section, we discovered the Comparable interface and some built-in methods that help us use the sorting logic on the TreeSet to get the highest and lowest value elements from the Set.
The above is the detailed content of Use the sorting logic of TreeSet in Java to get the maximum and minimum elements in the set. For more information, please follow other related articles on the PHP Chinese website!

使用math.Max函数获取一组数中的最大值在数学和编程中,经常需要找出一组数中的最大值。在Go语言中,我们可以使用math包中的Max函数来实现这个功能。本文将介绍如何使用math.Max函数来获取一组数中的最大值,并提供相应的代码示例。首先,我们需要导入math包。在Go语言中,导入包可以使用import关键字,如下所示:import"mat

使用Python的max()函数获取序列或集合中的最大值在Python编程中,我们经常需要从序列或集合中找到最大的元素。Python提供了一个内置函数max(),它可以非常方便地实现这个功能。max()函数可以接受任何可迭代对象作为参数,包括列表、元组、集合等。它会返回传入对象中的最大元素。下面是max()函数的基本语法:max(iterable[,def

如何在PHP数组中获取最大值在编写PHP代码时,经常需要对数组进行各种操作,其中包括获取数组中的最大值。在本文中,我们将介绍如何使用PHP的内置函数和自定义函数来获取数组中的最大值,并提供相应的代码示例。使用PHP内置函数max()PHP提供了一个内置函数max(),可以方便地从数组中获取最大值。下面是使用该函数的代码示例:<?php$numbers

讨论一个给定二进制数的问题。我们必须从中删除一点,以便剩余的数字应该是所有其他选项中的最大值,例如Input:N=1011Output:111Explanation:Weneedtoremoveonebitsoremoving0bitwillgiveamaximumnumberthanremovingany1’sbit.111>101,011.Input:111Output:11Explanation:Sinceallthebitsare1sowecanremovean

TreeSet是JavaCollectionFramework中的一个类,它实现了SortedSet接口。它按升序存储元素,并且不允许重复值,因此访问和检索时间变得更快。由于这个出色的功能,TreeSet经常用于存储需要快速搜索的大量信息。我们将使用Comparable接口对给定的TreeSet进行排序,然后使用内置方法,尝试获取最高和最低值的元素来自该TreeSet。从TreeSet获取最高和最低值元素的Java程序在进入程序之前,让我们先熟悉一些概念类似的界面当我们想要按自定义对象的自然顺序

在本文中,我们将使用C++解决寻找最大值和最小值相同的子数组数量的问题。以下是该问题的示例−Input:array={2,3,6,6,2,4,4,4}Output:12Explanation:{2},{3},{6},{6},{2},{4},{4},{4},{6,6},{4,4},{4,4}and{4,4,4}arethesubarrayswhichcanbeformedwithmaximumandminimumelementsame.Input:array={3,3,1,5,

MySQL中如何使用MAX函数找出某个字段的最大值在MySQL中,我们可以使用MAX函数来找出某个字段的最大值。MAX函数是一个聚合函数,用于找出指定字段的最大值。使用MAX函数的语法如下:SELECTMAX(column_name)FROMtable_name;其中,column_name是要查找最大值的字段名,table_name是要查询的表名。下

在这个问题中,我们给定一个大小为n的数组arr[]和一个数字S。我们的任务是找到修改后的数组的最小值的最大可能值。p>这里是修改数组的规则,修改前后数组元素之和应为S。修改后的数组中不允许有负值。如果修改后的数组,需要数组的最小值最大化。可以通过增加或减少数组的任何元素来修改数组。使用这些约束,我们需要找到新数组并返回数组中最小元素的最大值。让我们举个例子来理解这个问题,Input:arr[]={4,5,6}S=2Output:4说明修改后的数组为{4,5,5}解决方法我们需要最大化修改后


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
