2015年3月12日
摘要: 代码:template bool MapContainsKey(const map& m,T key) { for (map::iterator it = m.begin(); it != m.end(); ++it)//差点玩死我 { if (it->first == key) { ... 阅读全文
posted @ 2015-03-12 00:15 wanghesai 阅读(758) 评论(0) 推荐(0) 编辑