is this question different from reversing the array? kindly explain the logic as I am not able to understand the question
Confused about the wording
Yes @yaheyafarooqui_8319591c036ff6e9
Both ques are different…
Inverse is Simply swapping the value of the array with the value at that index.
Algo
- Create a new Array say narr and original array is arr.
- 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.)
- return new array.
refer this code ->
#include<iostream>
#include<bits/stdc++.h>
using namespace std;
int main() {
int N;
cin>>N;
int a[N];
for(int i =0;i<N;i++)
cin>>a[i];
int b[N];
for(int j=0;j<N;j++){
b[a[j]]=j;
}
for(int i=0;i<N;i++){
cout<<b[i]<<" ";
}
return 0;
}
I think the question specified has to be done in a recursive manner, right? even though the code you shared passes the test case but it is not a recursive approach
thank you for the help, much appreciated
1 Like
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.