📜  C++ STL中的map :: begin()和end()

📅  最后修改于: 2021-05-30 03:00:16             🧑  作者: Mango

映射是关联容器,以映射方式存储元素。每个元素都有一个键值和一个映射值。任何两个映射值都不能具有相同的键值。

map :: begin()

begin()函数用于返回指向地图容器第一个元素的迭代器。 begin()函数将双向迭代器返回到容器的第一个元素。

句法 :

mapname.begin()
Parameters :
No parameters are passed.
Returns :
This function returns a bidirectional
iterator pointing to the first element.

例子:

Input  : mymap['a'] = 1;
         mymap['b'] = 2;
         mymap['c'] = 3;
         mymap.begin();
Output : returns an iterator to the element 'a' = 1

Input  : mymap['d'] = 1;
         mymap.begin();
Output : returns an iterator to the element 'd' = 1

错误和异常

1.它没有异常抛出保证。
2.传递参数时显示错误。

// Demonstrates begin() and end()
#include 
#include 
using namespace std;
  
int main()
{
    // declaration of map container
    map mymap;
    mymap['a'] = 1;
    mymap['b'] = 2;
    mymap['c'] = 3;
  
    // using begin() to print map
    for (auto it = mymap.begin();
         it != mymap.end(); ++it)
        cout << it->first << " = "
             << it->second << '\n';
    return 0;
}

输出:

a = 1
b = 2
c = 3
地图::: end()

end()函数用于返回指向地图容器最后一个元素的迭代器。由于未引用有效元素,因此无法取消引用end()函数将返回双向迭代器。

句法 :

mapname.end()
Parameters :
No parameters are passed.
Returns :
This function returns a bidirectional
iterator pointing to the next of last element.

例子:

Input  : mymap['a'] = 1;
         mymap['b'] = 2;
         mymap['c'] = 3;
         mymap.end();
Output : returns an iterator to next to c 
(after last element)

错误和异常

1.它没有异常抛出保证。
2.传递参数时显示错误。

// CPP program to illustrate
// Demonstrates begin() and end() 
#include 
#include 
using namespace std;
  
int main()
{
    // declaration of map container
    map mymap;
    mymap['a'] = 1;
    mymap['b'] = 2;
    mymap['c'] = 3;
  
    // using begin() to print map
    for (auto it = mymap.begin();
         it != mymap.end(); ++it)
        cout << it->first << " = "
             << it->second << '\n';
    return 0;
}

输出:

a = 1
b = 2
c = 3
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”