2021-10-05 C++反转串的多种方法

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;

void reverse1(char *ch, int n)
{
	int low = 0, high = n-1;
	while(low < high)
	{
		swap(ch[low],ch[high]);
		low++;
		high--;
	}
}

void reverse2(char *ch, int n)
{
	for (int i = 0; i < n/2; ++i)
	{
		swap(ch[i],ch[n-1-i]);
	}
}

int reverseNum(int num)
{
	int result = 0;
	while(num)
	{
		result = result * 10 + num % 10;
		num = num / 10;
	}
	return result;
	cout << result;
}

int main(int argc, char const *argv[])
{
    char ch[] = "abcdef";

    cout << "1.原字符串:"<< ch << endl;

    cout << "2.while 循环翻转后:";
	reverse1(ch,strlen(ch));	cout << ch<< endl;

	cout << "3.for 循环又翻转回来后:";
	reverse2(ch,strlen(ch)); 	cout << ch << endl;

	cout << "4.string 的strrev()函数翻转回来:";
	strrev(ch);				 	cout << ch << endl;

	cout << "5.algorithm 的reverse()函数翻转回来:";
	string str = ch;
	reverse(str.begin(), str.end());	cout << str << endl;

	cout << "6.数字翻转123456:";
	int num = 123456;
	cout << reverseNum(num) << endl;

	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值