[단순 알고리즘]26.두 갈래 나무의 최대 깊이

2164 단어
제목:
 , 。

 。

 :  。

 :
  [3,9,20,null,null,15,7],

    3
   / \
  9  20
    /  \
   15   7
  3

1. 문제 풀이 사고방식:
귀속시키면 됩니다. 왼쪽 나무의 깊이와 오른쪽 나무의 깊이를 찾아 가장 큰 것을 취하면 됩니다.
코드는 다음과 같습니다.
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    int maxDepth(TreeNode* root) {
        if(root == NULL){
            return 0;
        }
        
        int l = maxDepth(root->left);
        int r = maxDepth(root->right);
        
        return max(l,r)+1;
    }
};

 
다음으로 전송:https://www.cnblogs.com/mikemeng/p/8987714.html

좋은 웹페이지 즐겨찾기