反向遍历:可以使用反向迭代器
reverse_iterator反向遍历map容器中的数据,它需要
rbegin()和rend()方法指出反向遍历的
起始位置和终止位置。
#include<iostream>
#include<map>
#include<string>
using namespace std;
int main()
{
map<int,char> m;
//插入元素,按照键值大小插入红黑树
m[25]='m';
m[28]='k';
m[10]='x';
m[30]='a';
m.erase(28);
for( map<int,char>::reverse_iterator rit=m.rbegin();rit!=m.rend();rit++)
cout<<(*rit).first<<","<<(*rit).second<<endl;
return 0;
}
#include<iostream>
#include<map>
#include<string>
using namespace std;
int main()
{
map<int,char> m;
//插入元素,按照键值大小插入红黑树
m[25]='m';
m[28]='k';
m[10]='x';
m[30]='a';
m.erase(28);
for( map<int,char>::reverse_iterator rit=m.rbegin();rit!=m.rend();rit++)
cout<<(*rit).first<<","<<(*rit).second<<endl;
return 0;
}