博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
STL: reverse
阅读量:5052 次
发布时间:2019-06-12

本文共 528 字,大约阅读时间需要 1 分钟。

reverse

Reverses the order of the elements within a range.

template
void reverse( BidirectionalIterator _First, BidirectionalIterator _Last );

 

reverse_copy

Reverses the order of the elements within a source range while copying them into a destination range

template
OutputIterator reverse_copy( BidirectionalIterator _First, BidirectionalIterator _Last, OutputIterator _Result );

 

转载于:https://www.cnblogs.com/freewater/archive/2013/03/11/2953629.html

你可能感兴趣的文章
android 自定义控件
查看>>
php读取文件内容的三种方式(转)
查看>>
hadoop数据备份
查看>>
二分图匹配 学习笔记
查看>>
poj 2154:Color【polya计数,Euler函数】
查看>>
【转】前台和后台线程
查看>>
洛谷 P1964 【mc生存】卖东西
查看>>
纯CSS制作自适应分页条-分享------彭记(019)
查看>>
VS WebDev.WebServer40
查看>>
openjudge 2971:抓住那头牛 解题报告
查看>>
如何实现redis集群?
查看>>
架构中的集成难点
查看>>
正则表达式
查看>>
liunx系统虚拟机下安装tomcat9以及访问tomcat案例
查看>>
Oracle 插入Date数据
查看>>
word文档操作
查看>>
UIpageControl
查看>>
js判断是否为IE浏览器,是返回true,否返回false
查看>>
Linux性能分析 vmstat基本语法
查看>>
SpringMVC框架学习笔记(2)——使用注解开发SpringMVC
查看>>