目的是用递归写一个扰乱字符串
public String getScramble(String s) {
//如果字符串长度为1,返回其本身
if(s.length()==1) {
return s;
}
//产生随机数
int index = (int)(Math.random()*s.length());
String s1 = s.substring(0, index);
String s2 = s.substring(index);
//随机决定是s=s1+s2还是s=s2+s1
if(Math.random() > 0.5) {
s = getScramble(s2) + getScramble(s1);
} else {
s = getScramble(s1) + getScramble(s2);
}
return s;
}