我正在尝试这个问题:
使用Recursion编写一个函数,以显示用户输入的字符串的所有字符,使其所有元音都位于每个字谜的末尾。 (例如:Recursion => Rcrsneuio,cRsnroieu等)优化它。
从这个网站: http://erwnerve.tripod.com/prog/recursion/magic.htm
这就是我所做的:
public static void permute(char[] pre,char[] suff) {
if (isEmpty(suff)) {
//result is a set of string. toString() method will return String representation of the array.
result.add(toString(moveVowelstoEnd(pre)));
return;
}
int sufflen = getLength(suff); //gets the length of the array
for(int i =0;i<sufflen;i++) {
char[] tempPre = pre.clone();
char[] tempSuf = suff.clone();
int nextindex = getNextIndex(pre); //find the next empty spot in the prefix array
tempPre[nextindex] = tempSuf[i];
tempSuf = removeElement(i,tempSuf); //removes the element at i and shifts array to the left
permute(tempPre,tempSuf);
}
}
public static char[] moveVowelstoEnd(char[] input) {
int c = 0;
for(int i =0;i<input.length;i++) {
if(c>=input.length)
break;
char ch = input[i];
if (vowels.contains(ch+"")) {
c++;
int j = i;
for(;j<input.length-1;j++)
input[j] = input[j+1];
input[j]=ch;
i--;
}
}
return input;
}
问题的最后一部分是'优化它'。我不知道如何优化这一点。任何人都可以帮忙吗?
答案 0 :(得分:3)
将所有元音分组为v
将所有辅音分组为w
对于每对字谜,请结果