Open In App

unordered_multiset emplace_hint() function in C++ STL

Last Updated : 23 Jun, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The unordered_multiset::emplace_hint() is a built-in function in C++ STL which inserts a new element in the unordered_multiset container. It starts searching from the position provided in the parameter for the insertion point of the element. The position only acts as a hint, it does not decide the position at which the insertion is to be done. The insertion is done automatically at the position according to the container’s criterion. It increases the size of the container by one. Syntax: 

unordered_multiset_name.emplace_hint(iterator position, val)

Parameters: The function accepts two mandatory parameters which are described below:

  • position: it specifies the iterator pointing to the position from where search operation for insertion is to be started.
  • val: it specifies the element which is to be inserted in the container.

Return Value: It returns an iterator which points to the newly inserted element. Below programs illustrates the above function:

 Program 1: 

CPP




// C++ program to illustrate the
// unordered_multiset::emplace_hint()
#include <bits/stdc++.h>
using namespace std;
 
int main()
{
 
    // declaration
    unordered_multiset<int> sample;
 
    // inserts element using emplace_hint()
 
    // fast insertions as the search starts
    // from the previously inserted positions
    auto it = sample.emplace_hint(sample.begin(), 11);
    it = sample.emplace_hint(it, 11);
    it = sample.emplace_hint(it, 11);
 
    // slow insertions as the search starts from the
    // beginning of the containers
    sample.emplace_hint(sample.begin(), 12);
    sample.emplace_hint(sample.begin(), 13);
    sample.emplace_hint(sample.begin(), 13);
    sample.emplace_hint(sample.begin(), 14);
 
    cout << "Elements: ";
 
    for (auto it = sample.begin(); it != sample.end(); it++)
        cout << *it << " ";
    return 0;
}


Output:

Elements: 14 11 11 11 12 13 13

Time Complexity: O(n)

Auxiliary Space: O(n)

Program 2: 

CPP




// C++ program to illustrate the
// unordered_multiset::emplace_hint() function
#include <bits/stdc++.h>
using namespace std;
 
int main()
{
 
    // declaration
    unordered_multiset<char> sample;
 
    // inserts element using emplace_hint()
 
    // fast insertions as the search starts
    // from the previously inserted positions
    auto it = sample.emplace_hint(sample.begin(), 'a');
    it = sample.emplace_hint(it, 'a');
    it = sample.emplace_hint(it, 'a');
    it = sample.emplace_hint(it, 'b');
 
    // slow insertions as the search starts from the
    // beginning of the containers
    sample.emplace('b');
    sample.emplace('c');
    sample.emplace('d');
 
    cout << "Elements: ";
 
    for (auto it = sample.begin(); it != sample.end(); it++)
        cout << *it << " ";
    return 0;
}


Output:

Elements: d a a a b b c

Time Complexity: O(n)

Auxiliary Space: O(n)



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads