博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode[104]Maximum Depth of Binary Tree
阅读量:5290 次
发布时间:2019-06-14

本文共 611 字,大约阅读时间需要 2 分钟。

Given a binary 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.

/** * Definition for binary tree * struct TreeNode { *     int val; *     TreeNode *left; *     TreeNode *right; *     TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public:    int maxDepth(TreeNode *root) {        if(root==NULL)return 0;        int left=1+maxDepth(root->left);        int right=1+maxDepth(root->right);        return left>right?left:right;    }};

 

转载于:https://www.cnblogs.com/Vae1990Silence/p/4281345.html

你可能感兴趣的文章
Java源码解析(附录)(5) —— WildcardType
查看>>
内核映像的形成 —— KBuild体系
查看>>
Python+pytesseract+Tesseract-OCR图片文字识别(只适合新手)
查看>>
使用gitbash来链接mysql
查看>>
docker镜像管理基础
查看>>
黑盒测试和百合测试的优缺点对比
查看>>
SecureCRT的使用方法和技巧(详细使用教程)
查看>>
装饰者模式
查看>>
C++二进制文件中读写bitset
查看>>
右侧导航栏(动态添加数据到list)
查看>>
用Nginx+Lua(OpenResty)开发高性能Web应用
查看>>
virtualbox不能安装64位操作系统
查看>>
gulp 入门---使用gulp压缩JS
查看>>
81、iOS本地推送与远程推送详解
查看>>
Sharepoint online 如何使用asp.net开发项目!!!
查看>>
C#基础_注释和VS常用快捷键(一)
查看>>
http协议
查看>>
为什么CPU时钟频率在过去5年里没有增加?
查看>>
动态调用webservice
查看>>
2017-05-18
查看>>