博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
map学习
阅读量:6417 次
发布时间:2019-06-23

本文共 502 字,大约阅读时间需要 1 分钟。

1 #include  2 #include 
3 using namespace std; 4 int main() 5 { 6 map
mapm; 7 mapm.insert(pair
(0,200)); 8 mapm.insert(pair
(1,300)); 9 mapm.insert(pair
(2,400));10 mapm[3]=500;11 map
::iterator it;12 for (it=mapm.begin();it!=mapm.end();++it)13 {14 cout<
first<<" "<
second<
::iterator pos=mapm.find(5);26 27 if (pos==mapm.end())28 {29 30 cout<<"====没有发现======"<

 

转载于:https://www.cnblogs.com/cheshl/p/3271649.html

你可能感兴趣的文章
STO(Security Token Offering)证券型通证、代币发行介绍
查看>>
LeetCode: Add Binary 解题报告
查看>>
企业证书发布笔记
查看>>
dll 问题 (转)
查看>>
使用sql生成UUID
查看>>
mysql日期函数(转)
查看>>
PowerShell 简介
查看>>
REST API用得也痛苦
查看>>
Adapter 数据缓存
查看>>
SYS_并发管理系列2_并发程序运行状态查询和监控(案例)
查看>>
JSF
查看>>
php修改排序,上移下移
查看>>
转:tomcat基本安全认证
查看>>
Centos 如何启动时不启动桌面服务
查看>>
Sencha touch 初体验[转]
查看>>
给textbox的text赋中文值,页面提交后,该textbox的默认text值如何变成乱码了
查看>>
test for windows live writer plugins
查看>>
Tiny210 U-BOOT(二)----配置时钟频率基本原理
查看>>
Java中字符串相等与大小比较
查看>>
文字超过字符长度 显示… 点点点 jquery
查看>>