當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ set emplace()用法及代碼示例


C++ set emplace() 函數用於通過向容器中插入新元素來擴展集合容器。元素是直接構建的(既不複製也不移動)。

通過提供傳遞給此函數的參數 args 來調用元素的構造函數。

僅當 key 不存在時才會插入。

用法

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

參數

args: 為構造要插入到集合中的元素而轉發的參數。

返回值

emplace() 函數返回一個 bool 對,指示插入是否發生,並返回一個指向新插入元素的迭代器。

複雜度

容器大小的對數。

迭代器有效性

沒有變化。

數據競爭

容器被修改。

盡管並發訪問現有元素是安全的,但在容器中迭代範圍並不安全。

異常安全

如果拋出異常,則容器中沒有變化。

例子1

讓我們看一個簡單的例子,將元素插入到集合中:

#include <iostream>
#include <set>

using namespace std;

int main(void) {
   
   set<char> m;

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

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

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

   return 0;
}

輸出:

Set contains following elements
a, b, c, d, e,

在上麵的示例中,它隻是將元素插入具有給定鍵值對的集合 m 中。

例子2

讓我們看一個插入元素並檢查重複鍵的簡單示例:

#include <set>  
#include <string>  
#include <iostream>  
  
using namespace std;  
  
template <typename S> void print(const S& s) {  
    cout << s.size() << " elements:";  
  
    for (const auto& p:s) {  
        cout << "(" << p << ") ";  
    }  
  
    cout << endl;  
}  
  
int main()  
{  
    set<string> s1;  
  
    auto ret = s1.emplace("ten");  
  
    if (!ret.second){  
        cout << "Emplace failed, element with value \"ten\" already exists."  
            << endl << "  The existing element is (" << *ret.first << ")"  
            << endl;  
        cout << "set not modified" << endl;  
    }  
    else{  
        cout << "set modified, now contains ";  
        print(s1);  
    }  
    cout << endl;  
  
    ret = s1.emplace("ten");  
  
    if (!ret.second){  
        cout << "Emplace failed, element with value \"ten\" already exists."  
            << endl << "  The existing element is (" << *ret.first << ")"  
            << endl;  
    }  
    else{  
        cout << "set modified, now contains ";  
        print(s1);  
    }  
    cout << endl;  
}

輸出:

  set modified, now contains 1 elements:(ten) 

Emplace failed, element with value "ten" already exists.
  The existing element is (ten)

在上麵的例子中,元素被插入到集合中,當你嘗試使用相同的鍵 "ten" 時,它會顯示一個錯誤消息,鍵 "ten" 已經存在。

例子3

讓我們看一個簡單的例子來查找插入元素的總和:

#include <iostream>
#include <set>
using namespace std;
 
int main()
{
    // sum variable declaration
    int sum = 0;
 
    // set declaration
    set<int> myset{};
    myset.emplace(1);
    myset.emplace(7);
    myset.emplace(4);
    myset.emplace(8);
    myset.emplace(2);
    myset.emplace(5);
    myset.emplace(3);
 
    // iterator declaration
    set<int>::iterator it;
 
    // finding sum of elements
    while (!myset.empty()) {
        it = myset.begin();
        sum = sum + *it;
        myset.erase(it);
    }
 
    // printing the sum
    cout << "Sum of elements is:"<<sum;
    return 0;
}

輸出:

Sum of elements is:30

示例 4

讓我們看一個插入元素的簡單示例:

#include <iostream>
#include <set>
#include <string>
using namespace std;

int main() {

  typedef set<string> 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<n; i++)
   {
       cin>> 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

在上麵的例子中,它隻是根據用戶的選擇插入元素。






相關用法


注:本文由純淨天空篩選整理自 C++ set emplace()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。