算法
sltin
这个作者很懒,什么都没留下…
展开
-
PHP递归求二叉树的最大深度和最小深度
1. 二叉树的最大深度/** * Definition for a binary tree node. * class TreeNode { * public $val = null; * public $left = null; * public $right = null; * function __construct($val = 0, $left = null, $right = null) { * $this->val = $原创 2021-04-21 23:13:50 · 367 阅读 · 0 评论 -
Go递归求二叉树的最大深度和最小深度
1. 二叉树的最大深度/** * Definition for a binary tree node. * type TreeNode struct { * Val int * Left *TreeNode * Right *TreeNode * } */ //最大深度func maxDepth(root *TreeNode) int { // 递归终止条件 if root == nil { return 0 }原创 2021-04-21 23:07:25 · 327 阅读 · 0 评论