//子函数递归 /* struct TreeNode { int val; struct TreeNode *left; struct TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) { } };*/ class Solution { public: bool traceSubTree(TreeNode* pRoot1, TreeNode* pRoot2) { //递归退出条件:B为空时返回真;否则A非空时返回假 if (!pRoot2) return ...