二叉树结点定义:
Minimum Depth of Binary Tree
题目描述:Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.LeetCode
Maximum Depth of Binary Tree
题目描述: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.LeetCode
Balanced Binary Tree
题目描述:Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as: a binary tree in which the depth of the two subtrees of every node never differ by more than 1.LeetCode