Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have an array like this:

1 4 9 16 9 7 4 9 11 

What is the best way to reverse the array so that it looks like this:

11 9 4 7 9 16 9 4 1 

I have the code below, but I feel it is a little tedious:

public int[] reverse3(int[] nums) {
    return new int[] { nums[8], nums[7], nums[6], nums[5], num[4],
                       nums[3], nums[2], nums[1], nums[0] };
}

Is there a simpler way?

share|improve this question
4  
Use a loop to swap each of the elements in the first half with the elements in the second half. – Peter Lawrey Oct 1 '12 at 18:23
If i used void that means i wont be able to use the return statement in this method right? – PHZE OXIDE Oct 1 '12 at 18:27
That is true. You can either reserve the exist array which may or may not be returned. Or you can return a copy. – Peter Lawrey Oct 1 '12 at 18:31
Based on the idea you already had, I would hazard a guess that you are very experienced in development, so I will point out an easy alternative. Just do what you want in a reversed for-loop, instead of actually reversing the array. for (int i = someArray.length - 1; i > 0; i--) { doStuff(someArray[i]); } reversedArray[j++] = firstArray[i]; } – Letharion Oct 1 '12 at 18:41

6 Answers

Collections.reverse() can do that job for you if you put your numbers in a List of Integers.

List<Integer> list = Arrays.asList(1, 4, 9, 16, 9, 7, 4, 9, 11);
System.out.println(list);
Collections.reverse(list);
System.out.println(list);

Output:

[1, 4, 9, 16, 9, 7, 4, 9, 11]
[11, 9, 4, 7, 9, 16, 9, 4, 1]
share|improve this answer
+1, I didnt know that. – sans481 Oct 1 '12 at 18:23
Can you explain a little more thanks – PHZE OXIDE Oct 1 '12 at 18:24
1  
Please see the edit to the answer. – Vikdor Oct 1 '12 at 18:28
Why instantiating a new ArrayList? Arrays.asList() already returns a List. – cypressious Oct 7 '12 at 13:54
Thanks @cypressious, I was under the impression that Arrays.asList would return an unmodifiable list. Corrected that. – Vikdor Oct 7 '12 at 14:08

If you don'y want to use collection then you can do this:

for (i = 0; i < array.length / 2; i++) {
  int emp = array[i];
  array[i] = array[array.length - 1 - i];
  array[array.length - 1 - i] = temp;
}
share|improve this answer
i mistakenly wrote 'a' in place of '1'. – kanhai shah Oct 1 '12 at 18:31
Collections.reverse(Arrays.asList(array));
share|improve this answer

I would do something like this:

public int[] reverse3(int[] nums) {
  int[] numsReturn = new int[nums.length()]; 
  int count = nums.length()-1;
  for(int num : nums) {
    numsReturn[count] = num;
    count--;
  }
  return numsReturn;
}
share|improve this answer
1  
That will copy the values in the same order. You need to copy from the end and count backwards. – Peter Lawrey Oct 1 '12 at 18:32
That will not reverse.. You are actually creating a copy of your passed array.. – Rohit Jain Oct 1 '12 at 18:33
ok, i will change. – Rodrigo Kossmann Oct 1 '12 at 18:34
@RodrigoKossmann.. Or you can just use: - numsReturn[count--] = num – Rohit Jain Oct 1 '12 at 18:36
+1 For doing it with enhanced-for loop. – Rohit Jain Oct 1 '12 at 18:37
show 1 more comment

Or you could loop through it backeards

int[] firstArray = new int[]{1,2,3,4};
int[] reversedArray = new int[firstArray.length];
int j = 0;
for (int i = firstArray.length -1; i > 0; i--){
    reversedArray[j++] = firstArray[i];
}

(note: I have not compiled this but hopefully it is correct)

share|improve this answer

I like to keep the original array and return a copy. This is a generic version:

public static <T> T[] reverse(T[] array) {
    T[] copy = array.clone();
    Collections.reverse(Arrays.asList(copy));
    return copy;
}

without keeping the original array:

public static <T> void reverse(T[] array) {
    Collections.reverse(Arrays.asList(array));
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.