#include <iostream>
#include <map>
using namespace std; int main(){
map<int,int> m;
for (int i = ; i < ; i++){
m[i] = i*i;
}
map<int,int>::iterator iter;
iter = m.begin();
while(iter != m.end()){
cout << iter->first << "-" << iter->second << endl;
iter++;
}
for (iter = m.begin();iter != m.end(); iter++){
cout << iter->first << "-" << iter->second << endl;
}
for(auto &it : m){
cout << it.first << "-" << it.second <<endl;
}
return ;
}
相关文章
- 11-28Week3:选数问题——dfs遍历
- 11-28objective-c与c++的差异
- 11-28c++用vector创建二维数组
- 11-28golang_并发安全: slice和map并发不安全及解决方法
- 11-28JS中的.map()方法-取数组,.sort()方法-数据排序,.slice()方法-数据切片的使用
- 11-28Go语言内置容器(数组(array)、切片(slice)和映射(map))
- 11-28103. 二叉树的锯齿形层序遍历
- 11-28【leetcode】103. 二叉树的锯齿形层序遍历
- 11-28【leetcode】103:二叉树的锯齿形层序遍历
- 11-28WPF树形菜单--递归与非递归遍历生成树结构的集合