try to reverse an array in Java | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

try to reverse an array in Java

import java.util.Arrays; public class yo5 { public static void main(String[]args) { int[] a = new int[] {1,2,3,4,5}; int b = a.length; for(int i=0; i<a.length; i++) { b--; a[i] = a[b]; } System.out.println(Arrays.toString(a)); } } Can anyone explain why the outcome is [5, 4, 3, 4, 5] in stead of [5, 4, 3, 2, 1] ??

27th Jul 2019, 10:38 AM
Ys Lam
Ys Lam - avatar
2 Answers
+ 2
You can reverse arrays without using additional memory public static void reverseElementsInVector(double[] vector){ int size = vector.length - 1; int medium = (size+1)/2; for(int i = 0; i < medium; ++i){ swap(vector, i, size - i); } } Swap function: private static void swap(double[] vector, int i, int j){ double t = vector[i]; vector[i] = vector[j]; vector[j] = t; }
29th Jul 2019, 12:03 AM
Marina Vasilyova
Marina Vasilyova - avatar
+ 1
You can achieve it for example this way. https://code.sololearn.com/cG6b0GyOtmn1/?ref=app
27th Jul 2019, 10:49 AM
TheWh¡teCat 🇧🇬
TheWh¡teCat 🇧🇬 - avatar