I have build tree from in and post order treaversing but getting segmentation fault please help

2 changes you have to do

  1. if(s==e)
    {i–;return root;}
    decrese i when you are at leaf node

  2. correct the index for left and right part
    correct one

     root->right=build(in,post,ind+1,e);
     root->left=build(in,post,s,ind-1);
    

modified code

i hope this help
if you have more doubts regarding feel free to ask
if your doubt is resolved mark it as resolved from your doubt section inside your course

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.