且未

博客园 首页 新随笔 联系 订阅 管理
#include <iostream>
#include <cstdio>
#include <map>
using namespace std;

map<int,map<int,int> > mp;
int main()
{
   mp[0][0]=1;
   mp[0][1]=2;
   mp[1][0]=3;

   for(map<int,map<int,int> >::iterator it = mp.begin();it!=mp.end();it++)
   {
       for(map<int,int>:: iterator it2 = (it->second).begin();it2!=(it->second).end();it2++)
       {
           cout<<it2->second<<" ";
       }
       cout<<endl;
   }
    return 0;
}

 

posted on 2019-04-10 22:33  阿聊  阅读(484)  评论(0编辑  收藏  举报