OJ题目:click here~~ 剑指offer 面试题18 AC_CODE const int maxn = 1008 ;const int maxm = 1008 ;int m , n ;struct Node{int x ;int l ;int r ;Node():l(-1),r(-1){}}A[maxn] , B[maxm];vector<int> g ;void F
1. 题目 2. 题解 符合树的子结构包含以下三种情况: 以节点 A 为根节点的子树 包含树 B ,对应 recur(A, B);树 B 是 树 A 左子树 的子结构,对应 isSubStructure(A.left, B);树 B 是 树 A 右子树 的子结构,对应 isSubStructure(A.right, B); /*** Definition for a binary tr