深度遍历(递归) int depth(TreeNode* pRoot) { if (pRoot==nullptr) return 0; return max(1+depth(pRoot->left),1+depth(pRoot->right)); }