What is inverse of an array

in question it says to use recursive function but recusion is not taught yet

Inverse is Simply swapping the value of the array with the value at that index.

Algo

  1. Create a new Array say narr and original array is arr.
  2. now at the arr[i]th index of narr save the ith value.(previously i is the index and arr[i] is the value bt now arr[i] is the index and i is the value.)
  3. return new array.

Code

  public static int[] inverse(int[] arr){

        int[] narr = new int[arr.length];

        for(int i = 0;i < arr.length;i++){

            narr[arr[i]] = i;
        }

        return narr;
    }

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.