Minimum Depth of Binary Tree
Description https://oj.leetcode.com/problems/minimum-depth-of-binary-tree/ Difficulty: 0.5/5.0 Analysis and solution /** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */ class Solution {...