如何在 C++ 中快速反转一个字符串?
在本部分,我们将了解如何使用 C++ 非常快速地反转字符串。对于反转,算法库中有一个名为 reverse() 的内置函数。该函数接收容器的起始指针和结束指针,然后反转元素。
Input: A number string “Hello World” Output: “dlroW olleH”
算法
Step 1:Take a string Step 2: reverse it using reverse() function Step 3: Print the result. Step 4: End
示例代码
#include<iostream> #include<algorithm> using namespace std; main() { string my_str = "This is a string to be reversed"; cout << "Initial state of this string: " << my_str << endl; //reverse using the reverse() function for reversing a string reverse(my_str.begin(), my_str.end()); cout << "Final state of this string: " << my_str; }
输出
Initial state of this string: This is a string to be reversed Final state of this string: desrever eb ot gnirts a si sihT
广告