栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

unorder

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

unorder

#include

#include

#include

#include

#include

using namespace std;

int main()

{

vector>v;

vectorv1;

vectorv2;

vectorv3;

for(int i =0;i<3;i++)

{

v1.push_back(i);

v2.push_back(i+1);

v3.push_back(i+2);

}

cout << endl;

v.push_back(v1);

v.push_back(v2);

v.push_back(v3);

for(vector>::iterator it = v.begin();it != v.end();it++)

{

for(vector::iterator vit = (*it).begin();vit != (*it).end();vit++)

{

cout << *vit << " ";

}

cout << endl;

}

cout << endl;

unordered_map >umap;

umap.emplace(1,v1);

cout << umap.size() << endl;

vectorw;

for(auto it = umap[1].begin();it!= umap[1].end();it++)

{

w.push_back(*it) ;

}

for(auto itr = w.begin();itr!=w.end();itr++)

{

cout << *itr << " ";

}

cout << endl;

for(unordered_map>::iterator ptr = umap.begin();ptr!= umap.end();ptr++)

{

cout << ptr->first << ":";

for(vector::iterator it1 = ptr->second.begin();it1!=ptr->second.end();it1++)

{

cout << *it1 << " ";

}

cout << endl;

}

}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/588783.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号