c_cpp 字符串反转
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 字符串反转相关的知识,希望对你有一定的参考价值。
#include <iostream>
#include <cstring>
using namespace std;
int main() {
char s[] = "hello";
_strrev(s);
cout << s << endl; // olleh
return 0;
}
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main() {
string s = "hello";
reverse(s.begin(), s.end());
cout << s << endl; // olleh
return 0;
}
以上是关于c_cpp 字符串反转的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp c中的字符串反转功能
c_cpp 在C中反转一个字符串
c_cpp 在不影响特殊字符的情况下反转字符串
c_cpp 反转方程式
c_cpp 反转链表
c_cpp 反转阵列