VOOZH about

URL: https://www.geeksforgeeks.org/cpp/how-to-create-an-unordered_set-of-user-defined-class-or-struct-in-c/

⇱ How to create an unordered_set of user defined class or struct in C++? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to create an unordered_set of user defined class or struct in C++?

Last Updated : 11 Jul, 2025

The unordered_set internally implements a hash table to store elements. By default we can store only predefined type as int, string, float etc. 
If we want to store the element of user defined type as structure then compiler will show an error because before storing elements into unordered_set compiler performs some checking. And while comparing two user defined type compiler can not compare them hence it generate an error. 
So, in order to store a structure in a unordered_set, some comparison function need to be designed. Since unordered_set also store implements hash table to store elements we should also have to implement hash function to perform hashing related work. 
Below method explains its implementation. 
Implementation: We create a structure type and define a comparison function inside that structure that will used to compare two structure type objects. Since unordered_set internally implements hash function so we should have also implement the hash function for user defined type objects. 
Syntax To store user defined type elements unordered_set should follow following syntax 
 

unordered_set(elementType, MyHashType) us;
// element type is user defined type and MyHashType is class implementing hash function


Below code explains it. 
 


Output: 
115 101 110 102

 

Output: 
115 101 110 102

 

Below is another example where we use predefined hash functions to make overall hash function of our defined class.
 


Output: 
[Laxman, Prasad]
[kartik, kapoor]
[Ram, Singh]

 
Comment
Article Tags: