LeetCode P104 Maximum Depth of Binary Tree 题解
1.题目:
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.
Subscribe to see which companies asked this question
题意:
找出一个二叉树最长一个分支上面节点的个数
2.解题思路:
首先了解二叉树,在纸上画出图形,然后选择一个遍历方法,我选择的是深度优先。
然后开始遍历,确定一个遍历方式,我选择的是先左后右。
以下面这个二叉树为例测试:
3.代码
1 |
|
4.一些总结:
希望可以找到什么方法优化二叉树的输入TUT