#include #include struct Node{ int data; struct Node *rightchild; struct Node *leftchild; }; struct Node *Cre