告别重启!给STM32F4的LAN8720网络驱动加上‘热插拔’检测(附完整代码与避坑点)
2026/5/1 3:51:27
max再加一class Solution{public:intmaxDepth(TreeNode*root){if(root==nullptr)return0;intleftDepth=maxDepth(root->left);intrightDepth=maxDepth(root->right);returnmax(leftDepth,rightDepth)+1;}};