Unordered Sets in C++ Standard Template Library
Last Updated :
12 Jun, 2023
An unordered_set is an unordered associative container implemented using a hash table where keys are hashed into indices of a hash table so that the insertion is always randomized. All operations on the unordered_set take constant time O(1) on an average which can go up to linear time O(n) in the worst case which depends on the internally used hash function, but practically they perform very well and generally provide a constant time lookup operation.
The unordered_set can contain a key of any type – predefined or user-defined data structure but all the keys must be unique. It is defined inside <unordered_set> header file as std::unordered_set class.
Syntax:
std::unordered_set<data_type> name;
In std::unordered_set, many functions are defined among which the most used functions are:
- The size() and empty() for capacity.
- The find() for searching a key.
- The insert () and erase() for modification.
Example:
C++
#include <bits/stdc++.h>
using namespace std;
int main()
{
unordered_set<string> stringSet;
stringSet.insert( "code" );
stringSet.insert( "in" );
stringSet.insert( "c++" );
stringSet.insert( "is" );
stringSet.insert( "fast" );
string key = "slow" ;
if (stringSet.find(key) == stringSet.end())
cout << key << " not found" << endl << endl;
else
cout << "Found " << key << endl << endl;
key = "c++" ;
if (stringSet.find(key) == stringSet.end())
cout << key << " not found\n" ;
else
cout << "Found " << key << endl;
cout << "\nAll elements : " ;
unordered_set<string>::iterator itr;
for (itr = stringSet.begin(); itr != stringSet.end();
itr++)
cout << (*itr) << endl;
}
|
Output
slow not found
Found c++
All elements : is
fast
c++
in
code
The functions find(), insert() and erase() take a constant amount of time on average. The find() function returns an iterator to end() if a key is not there in the set, otherwise, an iterator to the key position is returned. The iterator works as a pointer to the key values so that we can get the key by dereferencing them using the * operator.
We can also see that the order of output is messed up because there is no particular order to store data in unordered_set.
Note: The Unordered_set allows only unique keys, for duplicate keys unordered_multiset should be used.
set vs unordered_set in C++ STL
Set
|
Unordered Set
|
A Set is an ordered sequence of unique keys. |
An unordered_set is a set in which a key can be stored in any order, so unordered. |
Set is implemented as a balanced tree structure making it possible to maintain order between the elements (by specific tree traversal). |
The unordered_set is implemented as hash tables as we don’t have to worry about any order. |
The time complexity of set operations is O(log n). |
The time complexity of basic set operations is O(1). |
A practical problem based on unordered_set
Given an array(list) of integers, find all the duplicates among them(suppose the duplicates are the same number guessed by random people in an experiment).
Input:
arr[] = {1, 5, 2, 1, 4, 3, 1, 7, 2, 8, 9, 5}
Output:
Duplicate items are: 5 2 1
Example:
C++
#include <bits/stdc++.h>
using namespace std;
void printDuplicates( int arr[], int n)
{
unordered_set< int > intSet;
unordered_set< int > duplicate;
for ( int i = 0; i < n; i++) {
if (intSet.find(arr[i]) == intSet.end())
intSet.insert(arr[i]);
else
duplicate.insert(arr[i]);
}
cout << "Duplicate item are : " ;
unordered_set< int >::iterator itr;
for (itr = duplicate.begin(); itr != duplicate.end();
itr++)
cout << *itr << " " ;
}
int main()
{
int arr[] = { 1, 5, 2, 1, 4, 3, 1, 7, 2, 8, 9, 5 };
int n = sizeof (arr) / sizeof ( int );
printDuplicates(arr, n);
return 0;
}
|
Output
Duplicate item are : 5 2 1
Time Complexity: O(n log n)
Auxiliary Space: O(n)
std::unordered_set Member Methods
The following table contains all the member functions of std::unordered_set class:
Function Name
|
Function Description
|
insert()
|
Insert a new {element} in the unordered_set container. |
begin()
|
Return an iterator pointing to the first element in the unordered_set container. |
end()
|
Returns an iterator pointing to the past-the-end-element. |
count()
|
Count occurrences of a particular element in an unordered_set container. |
find()
|
Search for an element in the container. |
clear()
|
Removes all of the elements from an unordered_set and empties it. |
cbegin()
|
Return a const_iterator pointing to the first element in the unordered_set container. |
cend()
|
Return a const_iterator pointing to a past-the-end element in the unordered_set container or in one of its buckets. |
bucket_size()
|
Returns the total number of elements present in a specific bucket in an unordered_set container. |
erase()
|
Remove either a single element or a range of elements ranging from start(inclusive) to end(exclusive). |
size()
|
Return the number of elements in the unordered_set container. |
swap()
|
Exchange values of two unordered_set containers. |
emplace()
|
Insert an element in an unordered_set container. |
max_size()
|
Returns maximum number of elements that an unordered_set container can hold. |
empty()
|
Check if an unordered_set container is empty or not. |
equal_range
|
Returns range that includes all elements equal to a given value. |
operator=
|
Copies (or moves) an unordered_set to another unordered_set and unordered_set::operator= is the corresponding operator function. |
hash_function()
|
This hash function is a unary function that takes a single argument only and returns a unique value of type size_t based on it. |
reserve()
|
Used to request a capacity change of unordered_set. |
bucket()
|
Returns the bucket number of a specific element. |
bucket_count()
|
Returns the total number of buckets present in an unordered_set container. |
load_factor()
|
Returns the current load factor in the unordered_set container. |
rehash()
|
Set the number of buckets in the container of unordered_set to a given size or more. |
max_load_factor()
|
Returns(Or sets) the current maximum load factor of the unordered set container. |
emplace_hint()
|
Inserts a new element in the unordered_set only if the value to be inserted is unique, with a given hint. |
== operator
|
The ‘==’ is an operator in C++ STL that performs an equality comparison operation between two unordered sets and unordered_set::operator== is the corresponding operator function for the same. |
key_eq()
|
Returns a boolean value according to the comparison. It returns the key equivalence comparison predicate used by the unordered_set. |
operator!=
|
The != is a relational operator in C++ STL which compares the equality and inequality between unordered_set containers. |
max_bucket_count()
|
Find the maximum number of buckets that unordered_set can have. |
Must Read – Recent Articles on unordered_set
Please Login to comment...