摘要: 深度优先搜索,递归 maxDepth(TreeNode* root){ if(!root)return 0; return max(maxDepth(root->left),maxDepth(root->right))+1; } 广度优先搜索,队列 queue<TreeNode*>q; q.push 阅读全文
posted @ 2023-07-18 13:53 iu本u 阅读(13) 评论(0) 推荐(0)