STL——翻转字符串

Posted 2019go5

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STL——翻转字符串相关的知识,希望对你有一定的参考价值。

#include<bits/stdc++.h>
using namespace std;

int main()
{
    string a = "abc";
    string a1 = a;
    reverse(a.begin(),a.end());
    cout<<a1<<endl<<a<<endl;
    return 0;
}

输出结果

abc cba

以上是关于STL——翻转字符串的主要内容,如果未能解决你的问题,请参考以下文章

华为OD机试真题Python实现翻转单词顺序真题+解题思路+代码(2022&2023)

2022&2023华为OD机试 - 单词反转 2(Python)

翻转数组

华为OD机试 - 单词反转(Python)| 真题含思路

翻转数组

华为OD机试 - 单词反转(JavaScript) | 机试题算法思路 2023