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


C++ unordered_map emplace_hint()用法及代碼示例


unordered_map::emplace_hint()是C++ STL中的內置函數,該函數將鍵及其元素插入具有給定提示的unordered_map容器中。由於unordered_map是存儲帶有元素值的鍵的容器,因此可以有效地將容器大小增加1。所提供的提示不會影響要輸入的位置,它隻會增加插入速度,因為它指向要開始搜索排序的位置。它以相同的順序插入,隨後是容器。它的函數類似於unordered_map::emplace()函數,但有時比用戶準確提供位置要快。如果Map容器中已經存在鍵,則它不會在元素中插入鍵,因為Map僅存儲唯一鍵。

用法:

unordered_map_name.emplace_hint(position, key, element)

參數:該函數接受以下參數,如下所述。


  • position:指定從中開始排序搜索操作的位置,從而使插入速度更快。
  • key:指定要插入到unordered_map容器中的 key 。
  • element:指定要插入到unordered_map容器中的鍵的元素。

返回類型:此函數不返回任何內容。

時間複雜度:在最壞的情況下為O(n)。

以下示例程序旨在說明emplace_hint()方法:

範例1:

// C++ program to illustrate the 
// unordered_map::emplace_hint() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // initialize container 
    unordered_map<int, int> mp; 
  
    // insert elements in random order 
    mp.emplace_hint(mp.begin(), 2, 30); 
    mp.emplace_hint(mp.begin(), 1, 40); 
    mp.emplace_hint(mp.begin(), 3, 60); 
  
    // prints the elements 
    cout << "\nThe unordered_map is:\n"; 
    cout << "KEY\tELEMENT\n"; 
    for (auto itr = mp.begin(); itr != mp.end(); itr++) 
        cout << itr->first << "\t"
             << itr->second << endl; 
  
    return 0; 
}
輸出:
The unordered_map is:
KEY    ELEMENT
3    60
2    30
1    40

例子2

// C++ program to illustrate the 
// unordered_map::emplace_hint() function 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // initialize container 
    unordered_map<char, int> mp; 
  
    // insert elements in random order 
    mp.emplace_hint(mp.begin(), 'b', 30); 
    mp.emplace_hint(mp.begin(), 'a', 40); 
    mp.emplace_hint(mp.begin(), 'c', 60); 
  
    // prints the elements 
    cout << "\nThe unordered_map is:\n"; 
    cout << "KEY\tELEMENT\n"; 
    for (auto itr = mp.begin(); itr != mp.end(); itr++) 
        cout << itr->first << "\t"
             << itr->second << endl; 
  
    return 0; 
}
輸出:
The unordered_map is:
KEY    ELEMENT
c    60
b    30
a    40


相關用法


注:本文由純淨天空篩選整理自ankit15697大神的英文原創作品 unordered_map emplace_hint() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。