摘要: 分类:输入迭代器(input iterator) < 前向迭代器(forward iterator)< 双向迭代器(bidirectional iterator)< 跳转迭代器(random access iterator)和 输出迭代器(output iterator)继承关系如下struct i... 阅读全文
posted @ 2014-11-18 18:48 struggle_time 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 反转迭代器顾名思义,反向操作容器,而插入迭代器是将迭代器的赋值操作转换为push_back(),push_front(),insert()操作。插入迭代器要求容器必须包含对应的push_back(),push_front(),insert()操作,这样才能对容器进行插入。插入迭代器分三种 back... 阅读全文
posted @ 2014-11-18 18:43 struggle_time 阅读(1024) 评论(0) 推荐(0) 编辑