因此基本上不能/不允许创建新数组。除了实际更改和操纵当前数组之外,不能返回任何东西。您如何获取一个字符数组并简单地翻转/反转它们。
Starting array: ['P','e','r','f','e','c','t',' ','M','a','k','e','s',' ','P','r','a','c','t','i','c','e']
按空格将每个单词倒退
Reversed: ['P','r','a','c','t','i','c','e',' ','M','a','k','e','s',' ','P','e','r','f','e','c','t']
这是我到目前为止所拥有的
代码:
class Main {
public static void main(String[] args) {
char[] charArr = new char[] {'P','e','r','f','e','c','t',' ','M','a','k','e','s',' ','P','r','a','c','t','i','c','e'};
reverseCharArray(charArr);
}
public static void reverseCharArray() {
int arrLength = charArr.length;
for (int i = 0; i <= arrLength / 2; i++) {
charArr[arrLength - i - 1] = charArr[i];
System.out.println(charArr);
}
}
}
更新: 好的,我发现的是。我需要做的实际上是交换字符拼写的单词。这样一来,句子就可以向后/颠倒了。
注意:这是在此处的在线采访中尝试的: enter link description here
答案 0 :(得分:4)
这绝对不是一个好的解决方案,但这是一个可行的解决方案。
class Main {
public static void main(String[] args) {
char[] charArr = new char[] { 'P', 'e', 'r', 'f', 'e', 'c', 't', ' ', 'M', 'a', 'k', 'e', 's', ' ', 'P', 'r',
'a', 'c', 't', 'i', 'c', 'e' };
System.out.println(charArr);
reverseCharArray(charArr,0);
System.out.println(charArr);
}
public static void reverseCharArray(char[] charArr, int sorted) {
/* Look for last space*/
int lastSpace = -1;
for (int i = 0; i < charArr.length; i++) {
if (charArr[i] == ' ') {
lastSpace = i;
}
}
/* Grab the word and move it at the beginning of the sorted array */
for (int i = lastSpace + 1; i < charArr.length; i++) {
int k = i;
while (k != sorted) {
char tmp = charArr[k-1];
charArr[k-1] = charArr[k];
charArr[k] = tmp;
k--;
}
sorted++;
}
/* At this point, the last character is a space*/
/* Else, we've swapped all the words */
int k = charArr.length - 1;
if (charArr[k] != ' ') {
return;
}
/* If it's a space, grab it and move it at the beginning*/
while (k != sorted) {
char tmp = charArr[k-1];
charArr[k-1] = charArr[k];
charArr[k] = tmp;
k--;
}
sorted++;
/*Recursive call on the not sorted array*/
reverseCharArray(charArr,sorted);
}}
答案 1 :(得分:1)
下面的方法交换间隔。请注意,它们的长度必须相同。
public static char[] swap(char[] arr, int lstart, int rstart, int len){
for(int i=lstart; i<lstart+len; i++){
char temp = arr[i];
arr[i] = arr[rstart+i];
arr[rstart+i] = temp;
}
return arr;
}
答案 2 :(得分:1)
假设您有以下数组; [h, e, y, , y, o, u]
,您必须以一种模式进行工作;从外到内(或相反)。因此,[1,2,3,4,3,2,1]
必须交换1
和1
,2
和2
等。如您所见,此数组的长度为7,在这种情况下,所需的交换数量恰好是4(4
被自身交换了)。要计算交换量,只需将数组长度除以2.0f
即可。
现在,您必须遍历数组,交换那些索引。要计算要交换的索引,您必须检查交换位置。假设您处于第二次交换,数组2
的索引为1和5,3
的索引为2和4。您现在可能已经识别出该模式。第一个索引始终是已完成交换的数量,第二个索引是数组的长度减去1减去已完成交换的数量。
这是这里的代码;
public static void swap(char[] array){
int totalSwaps = (int) Math.ceil(array.length / 2.0f);
for(int currentSwaps = 0; currentSwaps < totalSwaps; currentSwaps++){
char char1 = array[currentSwaps];
int position2 = array.length - (currentSwaps + 1);
array[currentSwaps] = array[position2];
array[position2] = char1;
}
System.out.println(Arrays.toString(array));
}
编辑:我刚刚看到您要颠倒char []中的每个单词,您可能想在第一句话中澄清一下
为此;我建议您使用String::split
将字符串拆分为字符串[],然后使用String::toCharArray
将其更改为字符数组。虽然这确实会创建新的数组
答案 3 :(得分:0)
有一种算法,如下,
"Perfect Makes Practice"
,在反转单个单词后,字符串应为“tcefreP sekaM ecitcarP”
。"Practice Makes Perfect"
。有关更多信息,请检查Reverse words in a given string。