#include<iostream> #include<cstdio> #include<cstdlib> #define SIZE(a) ((sizeof(a)) / sizeof(a[0])) using namespace std; static int arr[] = { 1,5,4,3,2,6 }; typedef int Type; typedef struct BST_Node { Type key; struct BST_Node *lchild; struct BST_Node *rchild; struct BST_Node *paren...