if (递归函数(root->left)) return ; if (递归函数(root->right)) return ;
left = 递归函数(root->left); right = 递归函数(root->right); left与right的逻辑处理;