摘要: ``` #include #include using namespace std; int main() { map m1, m2, m3;//定义仨map map ::iterator m1_Iter; //map迭代器 m1.insert( pair (1, 60 ) ); m1.insert( pair (1, 50 ) ); m1.insert ( pair ( 2, 20 ) ); m 阅读全文
posted @ 2020-03-30 11:30 小申同学 阅读(148) 评论(0) 推荐(0) 编辑