Skip to content

Latest commit

 

History

History

maximum_depth_of_binary_tree

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

104. Maximum Depth of Binary Tree

算法

用递归的思路,比较左子树和右子树,取长的子树长度。

复杂度

  • 时间复杂度:O(N)
  • 空间复杂度:O(1)