const_iterator的使用,STL算法----copy(),输出迭代器---ostream_iterator()
#include#include#include//注1:在用STL模版库的时候头文件不要加.h,要用命名空间voidshow_sequence(std::vector::const_iteratorfirst,std::vector::const_iteratorlast)//注2:const_iterator为vector中元素的一个const迭代器类型,这个类型定义为指向constT的迭代器