#include #include struct node{ int value; node* leftChild; node* rightChild; }; node* Create(int data[], int n){ node* root; }