C++中对字符串反转操作方法
程序员文章站
2022-03-09 07:49:32
将字符串进行反转
(以下代码均在vs2015测试通过)借用了网上的思路,给自己提醒
方法1:使用string.h中的strrev函数 将字符串数组反转
#include
#include
using...
将字符串进行反转
(以下代码均在vs2015测试通过)借用了网上的思路,给自己提醒
方法1:使用string.h中的strrev函数 将字符串数组反转
#include
#include
using namespace std;
int main()
{
char s[]= "hello world";
_strrev(s);
cout << s;
return 0;
}
方法2:使用algorithm中的reverse方法。参数使用如下:
#include
#include
#include
using namespace std;
int main()
{
string s = "hello world";
reverse(s.begin(), s.end());
cout << s << endl;
return 0;
}
方法3:自己编写函数 首尾互换元素,借助中间值 还是调换的字符串数组
#include
using namespace std;
void reverse(char *s, int n)
{
for (int i = 0, j = n - 1; i < j; i++, j--)
{
char c = s[i];
s[i] = s[j];
s[j] = c;
}
}
int main()
{
char s[] = "hello world";
reverse(s, 11);
cout << s << endl;
return 0;
}
上一篇: iOS14.5如何更改默认的音乐应用
下一篇: 使用redis管理用户登录会话的方法
推荐阅读
-
Python中的字符串查找操作方法总结
-
SQL Server中通过reverse取某个最后一次出现的符号后面的内容(字符串反转)
-
Objective-C中字符串NSString的常用操作方法总结
-
python中字符串的操作方法大全
-
java中对字符串每个字符统计的方法
-
Shell中实现字符串反转方法分享
-
Javascript中字符串和数字的操作方法整理
-
【LeeCode 简单 字符串 python3】557 反转字符串中的单词 III
-
C++中的字符串输入输出,转自:https://www.cnblogs.com/zzw1024/p/10502011.html
-
【转载】C#中List集合使用Reverse方法对集合中的元素进行倒序反转