VOOZH about

URL: https://www.geeksforgeeks.org/cpp/comparator-class-in-c-with-examples/

⇱ Comparator Class in C++ with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Comparator Class in C++ with Examples

Last Updated : 15 Jul, 2025

Comparator Classes are used to compare the objects of user-defined classes. In order to develop a generic function use template, and in order to make the function more generic use containers, so that comparisons between data can be made.

Syntax

Explanation: The above comparator function operator() class take two pair of objects at a time and return true if data members of the two operators are the same. There can be any condition as per the need of the problem in the comparator function. In the above example, the function returns true if data members are the same.

Example 1:

For implementing Linear Search on the array elements, searching an integer in a given array can be implemented easily. But searching any element on user defined data type can't be implemented easily as in case of array. In this case, the comparator class is used to implement it. Below is the program for the same: 


Output
Student found!

Explanation:

  • In the above program, a list of student objects is made in which initially 2 student objects are inserted.
  • Now to search for a particular student a template linear search function is written which makes use of the comparator class.
  • The comparator class compares the student to be searched from the list of students on the basis of their name attribute.
  • If the name attribute of the object to be searched is equal to any of the object's name attribute in the list then it returns true, otherwise, it returns false.

Example 2:

Let us take another example of using Comparator class for sorting, suppose the task is to sort an array of objects based on its attributes value, then the idea is to create a custom comparator class in which the function on which the sorting has to be done can be mentioned. Then, it can be passed as an argument in sort() function.


Output
Harshit Raj Prerna 

Explanation:

  • In the above program, a list of student objects is made in which initially 3 student objects are inserted.
  • Now if the list of the student has to be sorted on the basis of the student's rollno attribute then a custom comparator class has to be passed as an argument to the sort() function.
  • In the comparator class, a predicate logic has to be mentioned which returns either true or false on the basis of which the list is sorted.
Comment
Article Tags:
Article Tags: