日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

leetcode讲解--559. Maximum Depth of N-ary Tree

發布時間:2024/9/21 编程问答 36 豆豆
生活随笔 收集整理的這篇文章主要介紹了 leetcode讲解--559. Maximum Depth of N-ary Tree 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目

Given a n-ary 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.

For example, given a 3-ary tree:

We should return its max depth, which is 3.

Note:

  • The depth of the tree is at most 1000.
  • The total number of nodes is at most 5000.
  • 題目地址

    講解

    這道題需要對每次層的深度做個記錄,我直接使用結點的val屬性來記錄深度。另外就是給根節點深度置為1的時候有個技巧,設置一個一次性的flag。

    Java代碼

    /* // Definition for a Node. class Node {public int val;public List<Node> children;public Node() {}public Node(int _val,List<Node> _children) {val = _val;children = _children;} }; */ class Solution {private int result=0;private boolean flag = true;public int maxDepth(Node root) {if(root==null){return result;}if(flag){root.val=1;flag = false;}if(result<root.val){result = root.val;}for(Node node:root.children){node.val = root.val+1;maxDepth(node);}return result;}}

    總結

    以上是生活随笔為你收集整理的leetcode讲解--559. Maximum Depth of N-ary Tree的全部內容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。