C++在线运行

版本:

所属目录
点击了解高性能代码运行API
运行结果
教程手册
代码仓库
极速运行
终端运行
图形+终端

                        
以下是用户最新保存的代码
折纸超过珠峰 发布于:2024-12-01 18:52 幻方数组5X5 发布于:2024-11-29 15:40 输入数量后排序 发布于:2024-11-28 19:16 产生随机数后排序 发布于:2024-11-28 11:02 汉诺塔模型 发布于:2024-11-25 17:07 求sinh(x)的值 发布于:2024-11-23 11:30 测试sdes加密算法 发布于:2024-11-22 16:12 邻接矩阵 弗洛伊德 拓扑排序 发布于:2024-11-22 18:29 判断数组是否升序排列 发布于:2024-11-20 21:19 第三章2 回文 我认为这样更简洁快速 发布于:2024-11-22 16:25 课本 第二章 12 发布于:2024-11-19 17:15 测试代码! 发布于:2024-11-16 23:10 逆矩阵求法 发布于:2024-11-16 16:28 工资税后计算 发布于:2024-11-16 09:08 求水仙花个数 发布于:2024-11-16 08:34 猜名次记录 发布于:2024-11-15 17:55 猜数字游戏 发布于:2024-11-15 13:59 第一个不重复字符 发布于:2024-11-14 19:55 运行结果输出 发布于:2024-11-12 20:43 字符集合(取出不相等的字符) 发布于:2024-11-12 08:35 字符串中的整数和 发布于:2024-11-20 22:46 字符串逆序 发布于:2024-11-20 22:29 找互为相反数 发布于:2024-11-11 19:37 图的邻接矩阵 发布于:2024-11-22 13:38 我的世界源代码。 发布于:2024-11-10 14:28 交易的艺术 发布于:2024-11-09 09:24 # 一百到两百之间既能被三整除也能被五整除的数的和 发布于:2024-11-09 01:55 CRC3 数据校准 发布于:2024-11-08 09:55 HuffmanTree P138 发布于:2024-11-06 18:41 八大排序算法 发布于:2024-11-10 23:29 猜数字游戏。 发布于:2024-11-05 22:46 课本 第四章 第六题 发布于:2024-11-05 17:53 judge水仙花数 发布于:2024-11-05 16:59 fluent udf 发布于:2024-11-02 23:12 素数对 需要定义函数判断是否是素数 然后调用函数求出所有素数对 发布于:2024-11-02 14:50 二叉树后续遍历 发布于:2024-11-28 16:33 0.顺序栈.cpp 发布于:2024-11-01 15:34 康托逆展开,基于线段树优化 发布于:2024-11-01 15:46 例 7.3用流对象的成员函数 发布于:2024-11-01 08:40 noip2007字符串展开 发布于:2024-10-31 20:10 例 7.2用控制符控制输出格式 发布于:2024-10-31 10:45 例 7.1cerr流对象 发布于:2024-10-31 10:39 计算消耗期望 发布于:2024-10-30 05:40 C++中给double类型的变量赋值极大值和极小值 发布于:2024-10-28 16:02 例 6.4虚函数和抽象基类 发布于:2024-10-30 13:51 例 6.3虚析构函数 发布于:2024-10-28 10:53 24344073+刘欣然+第二次实验课作业 发布于:2024-10-26 00:28 **1. > ### ## ** 发布于:2024-10-26 00:13 简要情况保存 发布于:2024-10-25 21:57 读取ou2文件中EFT 发布于:2024-10-24 18:46 [更多]
显示目录

map用法



学习嵌入式的绝佳套件,esp8266开源小电视成品,比自己去买开发板+屏幕还要便宜,省去了焊接不当搞坏的风险。 蜂鸣版+触控升级仅36元,更强的硬件、价格全网最低。

点击购买 固件广场

map用法

map是C++中的一个标准容器,她提供了很好一对一的关系,在一些程序中建立一个map可以起到事半功倍的效果,本文为大家总结了map的一些基本简单的操作!

1、map最基本的构造函数;

mapmapstring; mapmapint;
mapmapstring; map< char ,string>mapchar;
mapmapchar; mapmapint;

2、map添加数据;

 map<int ,string> maplive;  
   1.maplive.insert(pair<int,string>(102,"aclive"));
   2.maplive.insert(map<int,string>::value_type(321,"hai"));
   3, maplive[112]="April";//map中最简单最常用的插入添加!

3、map中元素的查找:

find()函数返回一个迭代器指向键值为key的元素,如果没找到就返回指向map尾部的迭代器。

 map<int ,string >::iterator l_it;; 
   l_it=maplive.find(112);
   if(l_it==maplive.end())
                cout<<"we do not find 112"<<endl;
   else cout<<"wo find 112"<<endl;

4、map中元素的删除:

如果删除112;

 map<int ,string >::iterator l_it;;   
   l_it=maplive.find(112);
   if(l_it==maplive.end())
        cout<<"we do not find 112"<<endl;
   else  maplive.erase(l_it);  //delete 112;

5、map中 swap的用法:

Map中的swap不是一个容器中的元素交换,而是两个容器交换;

示例:

 #include <map> 
 #include <iostream>
  using namespace std;
  int main( )
  {
      map <int, int> m1, m2, m3;
      map <int, int>::iterator m1_Iter;
      m1.insert ( pair <int, int>  ( 1, 10 ) );
      m1.insert ( pair <int, int>  ( 2, 20 ) );
      m1.insert ( pair <int, int>  ( 3, 30 ) );
      m2.insert ( pair <int, int>  ( 10, 100 ) );
      m2.insert ( pair <int, int>  ( 20, 200 ) );
      m3.insert ( pair <int, int>  ( 30, 300 ) );
   cout << "The original map m1 is:";
   for ( m1_Iter = m1.begin( ); m1_Iter != m1.end( ); m1_Iter++ )
      cout << " " << m1_Iter->second;
      cout   << "." << endl;
   // This is the member function version of swap
   //m2 is said to be the argument map; m1 the target map
   m1.swap( m2 );
   cout << "After swapping with m2, map m1 is:";
   for ( m1_Iter = m1.begin( ); m1_Iter != m1.end( ); m1_Iter++ )
      cout << " " << m1_Iter -> second;
      cout  << "." << endl;
   cout << "After swapping with m2, map m2 is:";
   for ( m1_Iter = m2.begin( ); m1_Iter != m2.end( ); m1_Iter++ )
      cout << " " << m1_Iter -> second;
      cout  << "." << endl;
   // This is the specialized template version of swap
   swap( m1, m3 );
   cout << "After swapping with m3, map m1 is:";
   for ( m1_Iter = m1.begin( ); m1_Iter != m1.end( ); m1_Iter++ )
      cout << " " << m1_Iter -> second;
      cout   << "." << endl;
}

6、map的sort问题:

Map中的元素是自动按key升序排序,所以不能对map用sort函数:

示例:

 #include <map>`` #include <iostream>
 using namespace std;
 int main( )
 {
   map <int, int> m1;
   map <int, int>::iterator m1_Iter;
   m1.insert ( pair <int, int>  ( 1, 20 ) );
   m1.insert ( pair <int, int>  ( 4, 40 ) );
   m1.insert ( pair <int, int>  ( 3, 60 ) );
   m1.insert ( pair <int, int>  ( 2, 50 ) );
   m1.insert ( pair <int, int>  ( 6, 40 ) );
   m1.insert ( pair <int, int>  ( 7, 30 ) );
   cout << "The original map m1 is:"<<endl;
   for ( m1_Iter = m1.begin( ); m1_Iter != m1.end( ); m1_Iter++ )
      cout <<  m1_Iter->first<<" "<<m1_Iter->second<<endl;
}

7、map的基本操作函数:

C++ Maps是一种关联式容器,包含“关键字/值”对
begin() 返回指向map头部的迭代器
clear() 删除所有元素
begin() 返回指向map头部的迭代器
clear() 删除所有元素
count() 返回指定元素出现的次数
empty() 如果map为空则返回true
end() 返回指向map末尾的迭代器
equal_range() 返回特殊条目的迭代器对
erase() 删除一个元素
find() 查找一个元素
get_allocator() 返回map的配置器
insert() 插入元素
key_comp() 返回比较元素key的函数
lower_bound() 返回键值>=给定元素的第一个位置
max_size() 返回可以容纳的最大元素个数
rbegin() 返回一个指向map尾部的逆向迭代器
rend() 返回一个指向map头部的逆向迭代器
size() 返回map中元素的个数
swap() 交换两个map
upper_bound() 返回键值>给定元素的第一个位置
value_comp() 返回比较元素value的函数
由JSRUN为你提供的C++在线运行、在线编译工具
        JSRUN提供的C++ 在线运行,C++ 在线运行工具,基于linux操作系统环境提供线上编译和线上运行,具有运行快速,运行结果与常用开发、生产环境保持一致的特点。
yout