unable to build tree… kindly help
Problem in building tree
node *buildtree()
{
string d;
cin>>d;
if(d=="false")
return NULL;
else if(d=="true")
{
int a;
cin>>a;
node *root = new node(a);
root->left = buildtree();
root->right = buildtree();
return root;
}
else
{
stringstream geek(d);
int x = 0;
geek >> x;
node *root = new node(x);
root->left = buildtree();
root->right = buildtree();
return root;
}
}
Just call this function.
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.