📜  C++ STL-Multiset.emplace()函数

📅  最后修改于: 2020-10-19 07:50:14             🧑  作者: Mango

C++ STL Multiset.emplace()

C++ Multiset emplace()函数用于通过将新元素插入容器来扩展多集容器。元素是直接构建的(既不复制也不移动)。

通过给传递给此函数的参数args调用元素的构造函数。

句法

template 
    iterator emplace (Args&&? args);    //since C++ 11

参数

args:转发以构造要插入到容器中的元素的参数。

返回值

emplace()函数返回一个布尔对,将指示是否发生了插入,并返回一个指向新插入元素的迭代器。

复杂度

容器大小的对数。

迭代器有效性

没有变化。

数据竞争

容器已修改。

尽管同时访问出口元素是安全的,但在容器中进行迭代范围并不安全。

异常安全

如果引发异常,则多集容器中没有任何更改。

例子1

让我们看一个简单的示例,将元素插入多集中:

#include 
#include 

using namespace std;

int main(void) {
   
   multiset m;

   m.emplace('a');
   m.emplace('b');
   m.emplace('a');
   m.emplace('c');
   m.emplace('b');

   cout << "Multiset contains following elements" << endl;

   for (auto it = m.begin(); it != m.end(); ++it)
      cout << *it<< ", ";

   return 0;
}

输出:

Multiset contains following elements
a, a, b, b, c,

在上面的示例中,它只是将具有给定值的元素插入到多集m中。

例子2

让我们看一个简单的例子,插入元素并检查重复键:

#include   
#include   
#include   
  
using namespace std;  
  
template  void print(const S& s) {  
    cout << s.size() << " elements: ";  
  
    for (const auto& p : s) {  
        cout << "(" << p << ") ";  
    }  
  
    cout << endl;  
}  
  
int main()  
{  
    multiset s1;  
  
    s1.emplace("Deep");  
    s1.emplace("Nikita");  
    s1.emplace("Kesharwani");  
  
    cout << "multiset modified, now contains ";  
    print(s1);  
    cout << endl;  
  
    s1.emplace("Nikita");  
  
    cout << "multiset modified, now contains ";  
    print(s1);  
    cout << endl;  
}  

输出:

multiset modified, now contains 3 elements: (Deep) (Kesharwani) (Nikita) 

multiset modified, now contains 4 elements: (Deep) (Kesharwani) (Nikita) (Nikita)

例子3

让我们看一个简单的示例,查找插入元素的总和:

#include 
#include 
using namespace std;
 
int main()
{
    // sum variable declaration
    int sum = 0;
 
    // multiset declaration
    multiset mymultiset{};

    mymultiset.emplace(1);
    mymultiset.emplace(3);
    mymultiset.emplace(4);
    mymultiset.emplace(1);
    mymultiset.emplace(2);
    mymultiset.emplace(2);
    mymultiset.emplace(3);
 
    // iterator declaration
    multiset::iterator it;
 
    // finding sum of elements
    while (!mymultiset.empty()) {
        it = mymultiset.begin();
        sum = sum + *it;
        mymultiset.erase(it);
    }
 
    // printing the sum
    cout << "Sum of elements is: "<

输出:

Sum of elements is: 16

例子4

让我们看一个插入元素的简单示例:

#include 
#include 
#include 
using namespace std;

int main() {

  typedef multiset city;  
   string name;
   city fmly ;
   int n;

   cout<<"Enter the number of family members :";
   cin>>n;

   cout<<"Enter the name of each member: \n";
   for(int i =0; i> name;      // Get key
       fmly.emplace(name);
       
   }
   
      cout<<"\nTotal member of family is:"<< fmly.size();

      cout<<"\nDetails of family members: \n";
      cout<<"\nName \n ________________________\n";
      city::iterator p;
      for(p = fmly.begin(); p!=fmly.end(); p++)
      {
          cout<<(*p)<<" \n ";
      }
    
   return 0;
}

输出:

Enter the number of family members: 3
Enter the name of each member: 
Bob
Robin
David

Total member of family is: 3
Details of family members: 

Name 
 ________________________
Bob 
David 
Robin

在上面的示例中,它只是根据用户的选择插入元素。