您现在的位置是:首页 > 短信大全

reverse函数(C++)

作者:欧阳逸时间:2024-03-24 17:36:01分类:短信大全

简介  文章浏览阅读2.8w次,点赞42次,收藏255次。reverse函数:简单分析+代码运行举例_reverse函数

点击全文阅读

文章目录

1.reverse函数介绍2.reverse函数代码运行

1.reverse函数介绍

在这里插入图片描述
 1.1 函数功能介绍
  将容器[first, last )范围内的元素颠倒顺序放置
 1.2 函数参数介绍
   first_iterator, last_iterator 为函数两个参数,分别输入容器或者数组初始位置和结束位置的迭代器位置
 1.3 函数细节注意
  a. 头文件 “algorithm”
  b. 使用该函数的容器必须有内置的迭代器函数或者有指针指向,例如queue容器和stack容器没有内置的迭代器函数就没有对应的参数输入是无法使用的

2.reverse函数代码运行

 2.1 一般数组转置举例

#include<iostream>#include<algorithm>#include<queue>using namespace std;int a[3] = {0, 1, 2};int main(){    for(int i = 0; i < 3; i ++ ) cout << a[i] << ' ';    cout << endl;    reverse(a, a + 3);    for(int i = 0; i < 3; i ++ ) cout << a[i] << ' ';    cout << endl;    /*    0 1 2    2 1 0    */}

在这里插入图片描述

 2.2 常用STL容器举例,string,vector等

#include<iostream>#include<algorithm>#include<vector>using namespace std;int main(){    string a = "123";    reverse(a.begin(), a.end());    cout << a << endl;    /* 输出: 321 */}

在这里插入图片描述

#include<iostream>#include<algorithm>#include<vector>using namespace std;int main(){    vector<int> v = {1, 2, 3};    for(int i = 0; i < 3; i ++ ) cout << v[i] << ' ';    cout << '\n';    reverse(v.begin(), v.end());    for(int i = 0; i < 3; i ++ ) cout << v[i] << ' ';    /* 输出:    1 2 3    3 2 1 */}

在这里插入图片描述

点击全文阅读

郑重声明:

本站所有活动均为互联网所得,如有侵权请联系本站删除处理

我来说两句