Leetcode#104. 二叉樹的最大深度,C++實現

目錄 1. 題目 2. 方法一 2.1. 代碼 2.2. 結果 1. 題目 2. 方法一 2.1. 代碼 class Solution { public: int maxDepth(TreeNode* root) { if(root==NULL) return 0; return max(maxDepth(root->left),maxDepth(root-
相關文章
相關標籤/搜索