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;   
}
相关文章
|
6月前
|
C++ 容器
计算stl中重复元素个数的函数
计算stl中重复元素个数的函数
|
5月前
|
存储 安全 算法
C++的内置数组和STL array、STL vector
C++的内置数组和STL array、STL vector
|
6月前
|
Python
reverse函数
reverse函数。
51 0
|
6月前
|
C++
【STL】:反向迭代器
【STL】:反向迭代器
47 0
【C++STL】list的反向迭代器
【C++STL】list的反向迭代器
68 0
|
C++ 容器
C++【STL】之反向迭代器
C++ STL 反向迭代器设计思想和模拟实现详细讲解,干货满满!
131 0
C++【STL】之反向迭代器
【leetcode】【27、移除元素】双指针和STL库函数求解
【leetcode】【27、移除元素】双指针和STL库函数求解
|
算法 容器
使用迭代器输出vector里面的元素
使用迭代器输出vector里面的元素
88 0
|
Unix Go 开发者
数组复杂应用-数组反转|学习笔记
快速学习数组复杂应用-数组反转。
100 0
数组复杂应用-数组反转|学习笔记
|
C++
旋转数组STL(reverse)
题目: 给定一个数组,将数组向右移动k步,其中k为非负数。 样例:
78 0