#include <iostream> using namespace std; typedef struct Node { int data; Node* lchild, *rchild; } Node; void create(Node*& node, int data = -1) { node = new Node(); node->data = data; node->lchild = node->rchild = NULL; } void build(Node* head, int data) { if (head->data < 0...