Why its not printing anything
Hey @kundankumarsports2
There’s a problem with your for loop in the function-
corrected for loop is-
for(int j=s;j<=e;j++){
if(in[j]==pre[i])
{
index=j;
break;
}
}
first thing, you’ve to compare in[j] with pre[i], you were comparing it with pre[j],
Secondly, you have to run j from s to e,
Now your code will print, just check
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.