摘要: map<int, int> a; a[10] = 1; a[2] = 2; a[30] = 3; a[4] = 4; a[50] = 5; a[32] = 6; for(map<int, int>::iterator it = a.begin();it != a.end();it++ ) { LOG 阅读全文
posted @ 2021-10-27 19:58 hxqmw 阅读(228) 评论(0) 推荐(0) 编辑