LeetCode: Maximum Depth of Binary Tree(두 갈래 나무의 최대 깊이)
제목
Given a binary tree, find its maximum depth.
The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.
Note: A leaf is a node with no children.
Example: Given binary tree [3,9,20,null,null,15,7],
3 /\ 9 20 /\ 15 7
return its depth = 3.
생각
대신블로그 읽기 추천:https://blog.csdn.net/terence1212/article/details/52182836, 아주 상세하게 말했어요.
여기서 교체 알고리즘을 사용하고 깊이를 우선적으로 훑어보며 좌우 트리의 깊이를 계산하고 최대자를 선택한다.
코드
/**
* 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 depth(TreeNode* root)
{
if(root==NULL)
return 0;
int left=depth(root->left);
int right=depth(root->right);
return (left>right)?left+1:right+1;
}
int maxDepth(TreeNode* root) {
return depth(root);
}
};
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
리셋 문제 - 전화번호의 알파벳 조합제목:https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number/ 1. 해시는 층층이 비치고 있다 2. 귀속...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.