C++Leetcode559:N叉树的最大深度

题目
给定一个 N 叉树,找到其最大深度。
最大深度是指从根节点到最远叶子节点的最长路径上的节点总数。
例如,给定一个 3叉树 :
在这里插入图片描述
我们应返回其最大深度,3。

说明:
树的深度不会超过 1000。
树的节点总不会超过 5000。

思路
1、广度优先搜索。

实现方法
一、广度优先搜索

/*
// Definition for a Node.
class Node {
public:
    int val;
    vector<Node*> children;

    Node() {}

    Node(int _val, vector<Node*> _children) {
        val = _val;
        children = _children;
    }
};
*/
class Solution {
public:
    int maxDepth(Node* root) {
        if(!root) return 0;
        if(root->children.size()==0) return 1;
        int depth=0;
        queue<Node*> q;
        q.push(root);
        while(!q.empty()){
            int count=q.size();
            depth++;
            while(count>0){
                Node* c=q.front();
                q.pop();
                count--;
                if(c->children.size()!=0){
                    for(Node* k:c->children)
                        q.push(k);
                }        
            }
        }
        return depth;
    }
};

猜你喜欢

转载自blog.csdn.net/weixin_43434305/article/details/88086999