【微软100题】定义字符串的左旋转操作:把字符串前面的若干个字符移动到字符串的尾部。 如把字符串abcdef左旋转2位得到字符串cdefab。请实现字符串左旋转的函数。

package test;

/**
 * 定义字符串的左旋转操作:把字符串前面的若干个字符移动到字符串的尾部。 如把字符串abcdef左旋转2位得到字符串cdefab。请实现字符串左旋转的函数。
 * 要求时间对长度为n的字符串操作的复杂度为O(n),辅助内存为O(1)。
 * 
 * @author Zealot
 * 
 */
public class MS_26 {
	private void rotateString(String s, int rotate) {
		System.out.println("翻转前的字符串"+s);
		char temp;
		char[] c = s.toCharArray();
		for(int i = 0, j = rotate - 1; i < j; i++, j--) {
			temp = c[i];
			c[i] = c[j];
			c[j] = temp;
		}
		for(int i = rotate, j=c.length - 1; i < j; i++,j--){
			temp = c[i];
			c[i] = c[j];
			c[j] = temp;
		}
		for(int i = 0, j=c.length - 1; i < j; i++,j--){
			temp = c[i];
			c[i] = c[j];
			c[j] = temp;
		}
		/*for(int i =0 ; i < c.length; i++) {
			System.out.print(c[i]);
		}*/
		System.out.println("翻转后的字符串"+String.valueOf(c));
	}
	
	public static void main(String[] args) {
		int rotate=2;
		String s = "abcdef";
		MS_26 ms26 = new MS_26();
		ms26.rotateString(s, rotate);
		
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值