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

2024-02-05 03:36

本文主要是介绍C++ std::map几种遍历方式(正序、倒序),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

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

文章目录

  • C++ std::map几种遍历方式(正序、倒序)
    • 1、map 的定义方式
    • 2、正序遍历 map
      • 2.1 使用 for 循环
      • 2.2 使用 while 循环
    • 3、倒序遍历 map
      • 3.1 使用 for 循环
      • 3.2 使用 while 循环
    • 4、使用 std::greater 属性,直接定义倒序存储的 map
      • 4.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"}};// 使用迭代器倒序遍历mapstd::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(); // 使用迭代器倒序遍历mapwhile (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"}};// 使用迭代器倒序遍历mapstd::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(); // 使用迭代器倒序遍历mapwhile (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"}};// 使用迭代器倒序遍历mapstd::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(); // 使用迭代器倒序遍历mapwhile (iter != myMap.end()) {std::cout << iter->first << " => " << iter->second << '\n';++it;}return 0;
}

这篇关于C++ std::map几种遍历方式(正序、倒序)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/679645

相关文章

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

Springboot处理跨域的实现方式(附Demo)

《Springboot处理跨域的实现方式(附Demo)》:本文主要介绍Springboot处理跨域的实现方式(附Demo),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录Springboot处理跨域的方式1. 基本知识2. @CrossOrigin3. 全局跨域设置4.

springboot security使用jwt认证方式

《springbootsecurity使用jwt认证方式》:本文主要介绍springbootsecurity使用jwt认证方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录前言代码示例依赖定义mapper定义用户信息的实体beansecurity相关的类提供登录接口测试提供一

springboot security之前后端分离配置方式

《springbootsecurity之前后端分离配置方式》:本文主要介绍springbootsecurity之前后端分离配置方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的... 目录前言自定义配置认证失败自定义处理登录相关接口匿名访问前置文章总结前言spring boot secu

SpringBoot中封装Cors自动配置方式

《SpringBoot中封装Cors自动配置方式》:本文主要介绍SpringBoot中封装Cors自动配置方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录SpringBoot封装Cors自动配置背景实现步骤1. 创建 GlobalCorsProperties

Flutter打包APK的几种方式小结

《Flutter打包APK的几种方式小结》Flutter打包不同于RN,Flutter可以在AndroidStudio里编写Flutter代码并最终打包为APK,本篇主要阐述涉及到的几种打包方式,通... 目录前言1. android原生打包APK方式2. Flutter通过原生工程打包方式3. Futte

MySQL INSERT语句实现当记录不存在时插入的几种方法

《MySQLINSERT语句实现当记录不存在时插入的几种方法》MySQL的INSERT语句是用于向数据库表中插入新记录的关键命令,下面:本文主要介绍MySQLINSERT语句实现当记录不存在时... 目录使用 INSERT IGNORE使用 ON DUPLICATE KEY UPDATE使用 REPLACE

在C#中调用Python代码的两种实现方式

《在C#中调用Python代码的两种实现方式》:本文主要介绍在C#中调用Python代码的两种实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录C#调用python代码的方式1. 使用 Python.NET2. 使用外部进程调用 Python 脚本总结C#调

C++ 中的 if-constexpr语法和作用

《C++中的if-constexpr语法和作用》if-constexpr语法是C++17引入的新语法特性,也被称为常量if表达式或静态if(staticif),:本文主要介绍C++中的if-c... 目录1 if-constexpr 语法1.1 基本语法1.2 扩展说明1.2.1 条件表达式1.2.2 fa