Skip to content

Latest commit

 

History

History

0559.maximum-depth-of-n-ary-tree

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

0559. N 叉树的最大深度

解法 1 (traverse.js)

就直接深度优先遍历 (广度也无所谓), 取最大深度就好了.

成绩