Tree* Is_Exisiting_ID(Tree *root,int number) { if(!root || root->ID == ID) return root; else { if (root->leftNode) Is_Exisiting_ID(root->