C++ 基礎(chǔ)教程

C++ 流程控制

C++ 函數(shù)

C++ 數(shù)組 & 字符串

C++ 數(shù)據(jù)結(jié)構(gòu)

C++ 類 & 對象

C++ 指針

C++ 繼承

C++ STL 教程

C++ 參考手冊

C++ map erase() 函數(shù)使用方法及示例

C++ STL map(容器)

C ++ map delete()函數(shù)用于從map容器中刪除與給定鍵值關(guān)聯(lián)的單個(gè)元素或元素范圍。因此,將通過刪除元素的數(shù)量來減小尺寸。

語法

void erase (iterator position);                    	  // 在 C++ 11 之前
size_type erase (const key_type& k);    		  // 在 C++ 11 之前
void erase (iterator first, iterator last);  		  // 在 C++ 11 之前
iterator  erase (const_iterator position);		  //從 C++ 11 開始
size_type erase (const key_type& k);		  //從 C++ 11 開始	
iterator  erase (const_iterator first, const_iterator last); //從 C++ 11 開始

參數(shù)

position:指向要從map中刪除的單個(gè)元素的迭代器。

k:要從map上移除的元素的鍵。

first:要擦除范圍的開始。

last:要擦除范圍的末尾。

返回值

它返回一個(gè)指向已刪除元素的下一個(gè)元素的迭代器,或者返回已刪除元素的數(shù)量。

實(shí)例1

讓我們看一個(gè)簡單的示例,通過迭代器擦除元素。

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

int main ()
{
  map<char,int> mymap;
  map<char,int>::iterator it;
  mymap['a']=10;
  mymap['b']=20;
  mymap['c']=30;
  mymap['d']=40;
  
  cout<<"刪除元素之前: \n";
   for (it=mymap.begin(); it!=mymap.end(); ++it)
  std::cout << it->first << " => " << it->second << '\n';
  it=mymap.find('b');
  mymap.erase (it);                // erasing by iterator

  cout<<"\n刪除元素后: \n";
  for (it=mymap.begin(); it!=mymap.end(); ++it)
    std::cout << it->first << " => " << it->second << '\n';
  return 0;
}

輸出:

刪除元素之前: 
a => 10
b => 20
c => 30
d => 40

刪除元素后: 
a => 10
c => 30
d => 40

在上面的示例中,元素被迭代器擦除。

實(shí)例2

讓我們看一個(gè)簡單的示例,以給定的鍵值擦除map的元素。

#include <iostream>
#include <map>
#include <string>

using namespace std;
int main ()
{
  map<char,int> mymap;
  map<char,int>::iterator it;

  mymap['a']=10;
  mymap['b']=20;
  mymap['c']=30;
  mymap['d']=40;
  
  cout<<"刪除元素之前: \n";
   for (it=mymap.begin(); it!=mymap.end(); ++it)
    std::cout << it->first << " => " << it->second << '\n';

 mymap.erase ('c');               // erasing by key

  cout<<"\n刪除元素后: \n";
  for (it=mymap.begin(); it!=mymap.end(); ++it)
    std::cout << it->first << " => " << it->second << '\n';
  return 0;
}

輸出:

刪除元素之前: 
a => 10
b => 20
c => 30
d => 40

刪除元素后: 
a => 10
b => 20
d => 40

在上面的示例中,delete(key)函數(shù)使用鍵值'c'及其映射中的值。

實(shí)例3

讓我們看一個(gè)簡單的示例,以給定范圍擦除元素。

#include <iostream>
#include <map>
#include <string>

using namespace std;

int main ()
{
  map<char,int> mymap;
  map<char,int>::iterator it;

  mymap['a']=10;
  mymap['b']=20;
  mymap['c']=30;
  mymap['d']=40;
  
  cout<<"刪除元素之前: \n";
   cout<<"Size大小: "<<mymap.size()<<'\n';
   for (it=mymap.begin(); it!=mymap.end(); ++it)
   cout << it->first << " => " << it->second << '\n';

   mymap.erase ( mymap.begin () ,  mymap.end () );   // erasing by range

  cout<<"\n刪除元素后: \n";
  cout<<"Size大小: "<<mymap.size();
  for (it=mymap.begin(); it!=mymap.end(); ++it)
  cout << it->first << " => " << it->second << '\n';
  return 0;
}

輸出:

刪除元素之前: 
Size is: 4
a => 10
b => 20
c => 30
d => 40

刪除元素后: 
Size is: 0

在上面的示例中,使用了delete(first,last)函數(shù)來擦除具有給定范圍(即開始到結(jié)束)的元素。

實(shí)例4

讓我們看一個(gè)簡單的示例,從map中刪除所有奇數(shù)。

#include <map>
#include <iostream>
using namespace std;
int main()
{
    map<int, string> m = {{1, "one"}, 
                       {2, "two"}, 
                       {3, "three"},
                       {4, "four"}, 
                       {5, "five"}, 
                       {6, "six"}};
                       
    // 從m刪除所有奇數(shù)
    cout<<"刪除奇數(shù)后,元素是:\n ";
    for(auto it = m.begin(); it != m.end(); )
        if(it->first % 2 == 1)
            it = m.erase(it);
        else
            ++it;
    for(auto& p : m)
        cout << p.second << ", ";
}

輸出:

刪除奇數(shù)后,元素是:
two, four, six,

在上面的示例中,所有奇數(shù)均已刪除,并顯示偶數(shù)。

C++ STL map(容器)

丰满人妻一级特黄a大片,午夜无码免费福利一级,欧美亚洲精品在线,国产婷婷成人久久Av免费高清