STL反转函数reverse

简介: STL反转函数reverseSTL反转函数reverse
#include<iostream>
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<string>
#include<algorithm>  
#include<map>
#include<vector>
#include<queue> 
using namespace std;  
int main(){   
  string str="C++REVERSE";
    reverse(&str[0],&str[3]);//注意翻转的是前三个字符,别漏了&
  reverse(str.begin(),str.end());
    cout<<str;
  system("pause");
    return 0;   
}
相关文章
|
算法 Java C++
27.【C/C++ 最全vector数组的用法 (详解)】(一)
27.【C/C++ 最全vector数组的用法 (详解)】
299 0
|
6月前
|
编译器 C语言 C++
C++ STL中list迭代器的实现
C++ STL中list迭代器的实现
C++ STL中list迭代器的实现
|
6月前
|
存储 安全 算法
C++的内置数组和STL array、STL vector
C++的内置数组和STL array、STL vector
|
6月前
|
C++ 容器
【c++】优先级队列|反向迭代器(vector|list)
【c++】优先级队列|反向迭代器(vector|list)
43 0
|
7月前
|
Python
reverse函数
reverse函数。
56 0
|
7月前
|
C++
【STL】:反向迭代器
【STL】:反向迭代器
48 0
【C++STL】list的反向迭代器
【C++STL】list的反向迭代器
73 0
|
C++ 容器
C++【STL】之反向迭代器
C++ STL 反向迭代器设计思想和模拟实现详细讲解,干货满满!
138 0
C++【STL】之反向迭代器
|
算法 容器
使用迭代器输出vector里面的元素
使用迭代器输出vector里面的元素
93 0