GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::set::emplace(3) C++ Standard Libary std::set::emplace(3)

std::set::emplace - std::set::emplace


template< class... Args > (since C++11)
std::pair<iterator,bool> emplace( Args&&... args );


Inserts a new element into the container constructed in-place with the given args if
there is no element with the key in the container.


Careful use of emplace allows the new element to be constructed while avoiding
unnecessary copy or move operations. The constructor of the new element is called
with exactly the same arguments as supplied to emplace, forwarded via
std::forward<Args>(args).... The element may be constructed even if there already is
an element with the key in the container, in which case the newly constructed
element will be destroyed immediately.


No iterators or references are invalidated.


args - arguments to forward to the constructor of the element


Returns a pair consisting of an iterator to the inserted element, or the
already-existing element if no insertion happened, and a bool denoting whether the
insertion took place (true if insertion happened, false if it did not).


If an exception is thrown by any operation, this function has no effect (strong
exception guarantee).


Logarithmic in the size of the container.

// Run this code


#include <chrono>
#include <functional>
#include <iomanip>
#include <iostream>
#include <set>
#include <string>


class Dew
{
private:
int a;
int b;
int c;


public:
Dew(int _a, int _b, int _c)
: a(_a), b(_b), c(_c)
{}


bool operator<(const Dew &other) const
{
if (a < other.a)
return true;
if (a == other.a && b < other.b)
return true;
return (a == other.a && b == other.b && c < other.c);
}
};


const int nof_operations = 120;


int set_emplace() {
std::set<Dew> set;
for(int i = 0; i < nof_operations; ++i)
for(int j = 0; j < nof_operations; ++j)
for(int k = 0; k < nof_operations; ++k)
set.emplace(i, j, k);


return set.size();
}


int set_insert() {
std::set<Dew> set;
for(int i = 0; i < nof_operations; ++i)
for(int j = 0; j < nof_operations; ++j)
for(int k = 0; k < nof_operations; ++k)
set.insert(Dew(i, j, k));


return set.size();
}


void timeit(std::function<int()> set_test, std::string what = "") {
auto start = std::chrono::system_clock::now();
int setsize = set_test();
auto stop = std::chrono::system_clock::now();
std::chrono::duration<double, std::milli> time = stop - start;
if (what.size() > 0 && setsize > 0) {
std::cout << std::fixed << std::setprecision(2)
<< time.count() << " ms for " << what << '\n';
}
}


int main()
{
set_insert();
timeit(set_insert, "insert");
timeit(set_emplace, "emplace");
timeit(set_insert, "insert");
timeit(set_emplace, "emplace");
}


638.45 ms for insert
619.44 ms for emplace
609.43 ms for insert
652.55 ms for emplace


emplace_hint constructs elements in-place using a hint
(C++11) (public member function)
inserts elements
insert or nodes
(since C++17)
(public member function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.