java 笔试题 字符串旋转

时间:2022-05-10 07:59:16
 package com.shb.java;
/**
* 取出第一个重复的字符
* @author shaobn
* @date 2016-9-28
* @package_name com.shb.java
*/
public class Demo10 { /**
* @param args
* @date 2016-9-28
* @author shaobn
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
// findFirstRepeat("wqyqwyer23tdd",11);
reverseStr("hello",2);
}
// /**
// * 实现方法
// * @param str
// * @param n
// * @date 2016-9-28
// * @author shaobn
// */
// public static void findFirstRepeat(String str,int n){
// char[] ch = str.toCharArray();
// out: for(int i=0;i<n-1;i++){
// for(int j = i+1;j<n;j++){
// if(ch[i]!=ch[j]){
// continue;
// }else {
// System.out.println(ch[i]);
// break out;
// }
// }
//
// }
//
//
// }
/**
* 字符串的旋转 前n个字符排到后边,而后边的往前移动
* @param str
* @param n
* @date 2016-9-29
* @author shaobn
*/
public static void reverseStr(String str,int n){
String string = str.substring(0, n+1);
String string2 = str.substring(n+1);
String string3 = string2.concat(string);
System.out.println(string3);
} }