leetcode 104. 二叉樹的最大深度 遞歸/層序遍歷

1、「見樹用遞歸」web int maxDepth(struct TreeNode* root){ int left, right; if(0 == root) return 0; if(0 == root->left && 0 == root->right) return 1; left = maxDepth(root->left); right
相關文章
相關標籤/搜索