字符串旋转

题目描述

给定一个字符串,要求把字符串前面的若干个字符移动到字符串的尾部,如把字符串“abcdef”前面的2个字符'a'和'b'移动到字符串的尾部,使得原字符串变成字符串“cdefab”。请写一个函数完成此功能,要求对长度为n的字符串操作的时间复杂度为 O(n),空间复杂度为 O(1)。

三步反转法

#include<stdio.h>
void reverse(char* s, int from, int to) {
	while (from < to) {
		char t = s[from];
		s[from++] = s[to];
		s[to--] = t;
	}
}
void solution(char* s, int target, int len) {
	reverse(s, 0, target - 1);
	reverse(s, target, len - 1);
	reverse(s, 0, len - 1);
}
void main() {
	int i = 0;
	char s[] = { 'a','b','c','d','e' };
	int len = sizeof(s);
	solution(s, 2, len);
	while (i<len) {
		printf("%c", s[i]);
		i++;
	}
	getchar();

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值