Leetcode Maximum Depth of Binary Tree

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.
나무의 최대 깊이를 구하면 하나씩 귀속하면 된다.
그 본질은 나무의 높이를 구하는 것과 같다.
최소 깊이를 구하는 것보다 훨씬 쉽다. 최소 깊이를 구하려면 블로그와 같은 추가 처리가 필요하다.
http://blog.csdn.net/kenden23/article/details/14126005
//2014-2-16 update
	int maxDepth(TreeNode *root) 
	{
		if (!root) return 0;
		return max(maxDepth(root->left), maxDepth(root->right)) + 1;
	}

좋은 웹페이지 즐겨찾기