C++ Multimap 中的 end函数

首页 / C++入门教程 / C++ Multimap 中的 end函数

C++ multimap end()函数用于返回迭代器,该迭代器位于multimap中最后一个条目的旁边。

Note:-这是一个占位符。此位置没有元素,尝试访问是未定义的行为。

end - 语法

      iterator end();                            //until C++ 11
const_iterator end() const;                //until C++ 11
      iterator end() noexcept;              //since C++ 11
const_iterator end() const noexcept;  //since C++ 11

end - 返回值

它返回一个指向multimap最后一个元素旁边的迭代器。

end - 例子1

让我们看一下end()函数的简单示例:

#include <iostream>
#include <map>
using namespace std;
int main ()
{
  multimap<char,string> mymultimap;
  mymultimap = { 
               {'a',"Java"},
               {'b', "C++"},
               {'b', "Python"},
               {'a', "Android"}
               };
 //show content:
  for (multimap<char,string>::iterator it=mymultimap.begin(); it!=mymultimap.end(); ++it)
    cout << it->first << " => " << it->second << '\n';
  return 0;
}

输出:

a => Java
a => Android
b => C++
b => Python

在上面的示例中,end()函数用于返回指向mymultimap multimap中最后一个元素旁边的迭代器。

链接:https://www.learnfk.comhttps://www.learnfk.com/c++/cpp-multimap-end-function.html

来源:LearnFk无涯教程网

end - 例子2

让我们看一个简单的示例,使用for-each循环遍历multimap:

无涯教程网

#include <iostream>
#include <map>
#include <string>
#include <iterator>
#include <algorithm>
using namespace std;
int main() {
	  multimap<string, int> m;
  m= { 
     {"Room1", 100},
     {"Room2", 200},
     {"Room1", 300},
     {"Room1", 100} 
     };
	// Create a multimap iterator and point to beginning of multimap
	multimap<string, int>::iterator it = m.begin();
	// Iterate over a multimap using std::for_each and Lambda function	
		for_each(m.begin(), m.end(),
				[](pair<string, int> element){				   
					// Accessing KEY from element
					string word = element.first;
					// Accessing VALUE from element.
					int count = element.second;
					cout<<word<<" = "<<count<<endl;
		});
	return 0;
}

输出:

Room1 = 100
Room1 = 300
Room1 = 100
Room2 = 200

在上面的示例中,我们使用STL算法std ::for-each迭代multimap。它将在每个multimap元素上进行迭代,并调用我们提供的回调。

end - 例子3

让我们看一个简单的示例,使用while循环遍历multimap:

#include <iostream>
#include <map>
#include <string>
int main()
{
    using namespace std; 
      multimap<int,string> mymultimap = {
                { 100, "Nikita"},
                { 200, "Deep"  },
                { 200, "Priya" },
                { 400, "Suman" },
                { 300, "Aman"  }}; 
    multimap<int, string>::const_iterator it;//declare an iterator
    it = mymultimap.begin();//assign it to the start of the vector
    while (it != mymultimap.end())//while it hasn't reach the end
    {
cout << it->first << " = " << it->second << "\n"; 
// print the value of the element it points to
++it;//and iterate to the next element
    }
    cout << endl;
    return 0;
}

输出:

100 = Nikita
200 = Deep
200 = Priya
300 = Aman
400 = Suman

在上面的示例中,end()函数用于返回指向mymultimap multimap中最后一个元素旁边的迭代器。

链接:https://www.learnfk.comhttps://www.learnfk.com/c++/cpp-multimap-end-function.html

来源:LearnFk无涯教程网

end - 例子4

让我们看一个简单的例子:

#include <iostream>
#include <string>
#include <map>
using namespace std;
int main ()
{
  multimap<int,int> mymultimap = {
                { 10, 10},
                { 20, 20 },
                { 10, 30 },
                { 20, 10} 
                };                         
  cout<<"Elements are:" <<endl;
    for (multimap<int,int>::iterator it=mymultimap.begin(); it!=mymultimap.end(); ++it)
    cout << it->first 
    << " * " 
    << it->second 
    << " = "
    <<it->first * it->second
    << '\n';
  return 0;
  }

输出:

Elements are:
10 * 10 = 100
10 * 30 = 300
20 * 20 = 400
20 * 10 = 200

在上面的示例中,end()函数用于返回指向mymultimap multimap中最后一个元素旁边的迭代器。

链接:https://www.learnfk.comhttps://www.learnfk.com/c++/cpp-multimap-end-function.html

来源:LearnFk无涯教程网

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

深入拆解Java虚拟机 -〔郑雨迪〕

邱岳的产品实战 -〔邱岳〕

如何设计一个秒杀系统 -〔许令波〕

Linux性能优化实战 -〔倪朋飞〕

趣谈Linux操作系统 -〔刘超〕

用户体验设计实战课 -〔相辉〕

React Hooks 核心原理与实战 -〔王沛〕

攻克视频技术 -〔李江〕

结构执行力 -〔李忠秋〕

好记忆不如烂笔头。留下您的足迹吧 :)