VOOZH about

URL: https://www.geeksforgeeks.org/java/how-to-implement-a-custom-comparator-for-a-linkedhashset-in-java/

⇱ How to Implement a Custom Comparator for a LinkedHashSet in Java? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to Implement a Custom Comparator for a LinkedHashSet in Java?

Last Updated : 23 Jul, 2025

In Java, we cannot directly implement a custom comparator for a LinkedHashSet. But sometimes we need a requirement of custom comparator for example custom sorting. So, we can use some alternative approaches to fulfill the requirements.

In this article, we will be using a class for creating the custom comparator and this class will implement the Comparable interface for a LinkedHashSet in Java.

Approach:

  • In the first step, we have created a class which is the type of Employee, and implemented a Comparable interface.
  • It accepts a value of Employee type in a constructor and accepts UserIDs.
  • Then Override compareTo method.
  • We also Override a toString method for printing the output.
  • Now we create the LinkedHashSet of type Employee and add Employee ID.
  • Then we add these LinkedHashSet values to an ArrayList.
  • So, we can use Collection.Sort which sorts the elements by User IDs.
  • Then we print the output.

Program to Implement a Custom Comparator for a LinkedHashSet in Java

Suppose we have a LinkedHashSet of Employee IDs and want to perform a custom sorting, for this follow the below implementation.


Output
[Employee -> 1, Employee -> 2, Employee -> 3]

Explanation of the Program:

  • In the above program, we have defined a class Employee that implements the Comparable interface. The compareTo method is implemented to compare Employee objects based on their employee IDs.
  • We create a LinkedHashSet named setOfEmployees to store Employee objects. Note that LinkedHashSet maintains insertion order.
  • We convert the LinkedHashSet to an ArrayList named listUsers to perform sorting. This is done to demonstrate sorting using the custom comparator.
  • We sort the listUsers using Collections.sort method, which uses the custom comparator defined in the Employee class.
  • Finally, we print the sorted list.
Comment