206、N叉樹的最大深度

題目描述: 很明顯使用的是遞歸來進行 我的代碼: class Solution { public int maxDepth(Node root) { int max = 0; if(root == null){ return 0; } if(root.children.size() == 0){ return 1; } List<Integer> r
相關文章
相關標籤/搜索