Tree* Is_Exisiting_Number(Tree *root,int number,bool found) { if(!root || found) return root; if (root->value == number) found = true; else {