程序员编程艺术_第一章左旋转字符串_C实现

本文介绍了一种字符串左旋操作的高效实现方法,通过两次移动实现了时间复杂度为O(n)且空间复杂度为O(1)的目标。首先讨论了暴力方法的时间复杂度问题,然后提出了一种更优的解决方案,并提供了具体的C语言实现代码。
摘要由CSDN通过智能技术生成

题目描述:定义字符串的左旋转操作:把字符串前面的若干个字符移动到字符串的尾部,如把字符串 abcdef 左旋转 2 位得到字符串 cdefab。请实现字符串左旋转的函数,要求对长度为 n 的字符串操作的时间复杂度为 O(n),空间复杂度为 O(1)。

//first idea 暴力方式,时间复杂度(m*n)

//second idea 一次移动m个字符移动n/m次 时间复杂度(n)


/************************************
		pclvmm
		left_rang_string
		2014-01-13 20:06
*************************************/
#include 
  
  
   
   
#define LEN 10
#define GET_ARRAY_LEN(array,len) {len = sizeof(array)/sizeof(array[0]);}

//first idea violence 
//O(m*n)
void leftshiftone(char s[], int n)
{
	int i;
	char t = s[0];

	for( i = 1; i < n; i++)
		s[i - 1] = s[i];

	s[n - 1] = t;
}

void leftshift_1(char s[], int n, int m)
{
	while( m-- )
		leftshiftone(s, n);
}

//second idea: use pointer one time translate numbers of m
//O(m*(n%m))
void leftshift_2(char s[], int n, int m)
{
	int i,t;
	char *p,*q;
	char st[m];

	for(i = 0; i < m; i++)
		st[i] = s[i];

	p = s;
	q = p + m;

	while ( q + m < s + n){
		for( i = 0; i < m; i++)
			*(p + i) = *( q + i);
		p = q;
		q = q + m;
	}
	t = s + n -q;
	for(i = 0; i < t; i++)
		*(p + i) = *(q + i);
	for(i = 0; i < m; i++)
		*(p + t + i) = st[i];
}

int main(int argc, int * argv)
{
	int len;
	char ch[LEN] = "abcdefghjk";

	GET_ARRAY_LEN(ch,len);
	printf("%s\n",ch);
        leftshift_1(ch,len,3);
        leftshift_2(ch,len,3);
        printf("%s\n",ch);
        return 0;
}

  
  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值