C++字符串反转

C++字符串反转,第1张

C++字符串反转实现

自己编写一个Reverse函数实现字符串反转

void Reverse(char* s, int len)
{
	for (int i = 0,j=len; i < j; i++,j--)
	{
		char c = s[i];
		s[i] = s[j];
		s[j] = c;
	}
}
void test01()
{
	 char str[] = { "abcdef" };
	 
	 int len = strlen(str) - 1;
	 Reverse(str, len);

	 cout << str << endl;

}

结果输出:fedcba

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/564244.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-03
下一篇 2022-04-03

发表评论

登录后才能评论

评论列表(0条)

保存