C++ std::map几种遍历方式(正序、倒序)

Adunn 2024-07-01 09:35:01 阅读 86

C++ std::map几种遍历方式(正序、倒序)

文章目录

C++ std::map几种遍历方式(正序、倒序)1、map 的定义方式2、正序遍历 map2.1 使用 for 循环2.2 使用 while 循环

3、倒序遍历 map3.1 使用 for 循环3.2 使用 while 循环

4、使用 std::greater 属性,直接定义倒序存储的 map4.1 使用 for 循环4.2 使用 while 循环

1、map 的定义方式

//默认定义格式(默认按key升序存储): key, value,其中key可以是任意类型

std::map<std::uint32_t, std::string> myMap; //key 值为 std::uint32_t 类型

std::map<std::string, std::string> myMap; //key 值为 std::string 类型

//指定数据按key升序存储

std::map<std::uint32_t, std::string, std::greater<std::uint32_t> > myMap;

//指定数据按key升序存储

std::map<std::uint32_t, std::string, std::less<std::uint32_t> > myMap;

2、正序遍历 map

注意:正序使用的是 std::map<std::uint32_t, std::string>::iterator, 倒序使用的是:std::map<std::uint32_t, std::string>::reverse_iterator。

2.1 使用 for 循环

#include <iostream>

#include <map>

int main()

{

std::map<std::uint32_t, std::string> myMap = { { 1, "one"}, { 2, "two"}, { 3, "three"}};

// 使用迭代器倒序遍历map

std::map<std::uint32_t, std::string>::iterator iter;

for (iter = myMap.begin(); iter != myMap.end(); ++iter)

{

std::cout << iter->first << " => " << iter->second << '\n';

}

return 0;

}

2.2 使用 while 循环

#include <iostream>

#include <map>

int main()

{

std::map<std::uint32_t, std::string> myMap = { { 1, "one"}, { 2, "two"}, { 3, "three"}};

std::map<std::uint32_t, std::string>::iterator iter = myMap.begin();

// 使用迭代器倒序遍历map

while (iter != myMap.end())

{

std::cout << iter->first << " => " << iter->second << '\n';

++it;

}

return 0;

}

3、倒序遍历 map

注意:正序使用的是 std::map<std::uint32_t, std::string>::iterator, 倒序使用的是:std::map<std::uint32_t, std::string>::reverse_iterator。

3.1 使用 for 循环

#include <iostream>

#include <map>

int main()

{

std::map<std::uint32_t, std::string> myMap = { { 1, "one"}, { 2, "two"}, { 3, "three"}};

// 使用迭代器倒序遍历map

std::map<std::uint32_t, std::string>::reverse_iterator iter;

for (iter = myMap.rbegin(); iter != myMap.rend(); ++iter)

{

std::cout << iter->first << " => " << iter->second << '\n';

}

return 0;

}

3.2 使用 while 循环

#include <iostream>

#include <map>

int main()

{

std::map<std::uint32_t, std::string> myMap = { { 1, "one"}, { 2, "two"}, { 3, "three"}};

std::map<std::uint32_t, std::string>::reverse_iterator iter = myMap.rbegin();

// 使用迭代器倒序遍历map

while (iter != myMap.rend())

{

std::cout << iter->first << " => " << iter->second << '\n';

++it;

}

return 0;

}

4、使用 std::greater 属性,直接定义倒序存储的 map

注意:正序使用的是 std::map<std::uint32_t, std::string>::iterator, 倒序使用的是:std::map<std::uint32_t, std::string>::reverse_iterator。

4.1 使用 for 循环

#include <iostream>

#include <map>

int main()

{

std::map<std::uint32_t, std::string, std::greater<std::uint32_t> > myMap = { { 1, "one"}, { 2, "two"}, { 3, "three"}};

// 使用迭代器倒序遍历map

std::map<std::uint32_t, std::string>::iterator iter;

for (iter = myMap.begin(); iter != myMap.end(); ++iter)

{

std::cout << iter->first << " => " << iter->second << '\n';

}

return 0;

}

4.2 使用 while 循环

#include <iostream>

#include <map>

int main()

{

std::map<std::uint32_t, std::string, std::greater<std::uint32_t> > myMap = { { 1, "one"}, { 2, "two"}, { 3, "three"}};

std::map<std::uint32_t, std::string>::iterator iter = myMap.begin();

// 使用迭代器倒序遍历map

while (iter != myMap.end())

{

std::cout << iter->first << " => " << iter->second << '\n';

++it;

}

return 0;

}



声明

本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。