JZ55二叉树的深度C++
2022/2/7 22:46:05
本文主要是介绍JZ55二叉树的深度C++,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
链接
https://www.nowcoder.com/practice/435fb86331474282a3499955f0a41e8b?tpId=13&tqId=11191&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking
描述:
示例:
代码:
方法一:
class Solution { public: void TreeDepthHelper(TreeNode* pRoot, int curr, int& max) { if (pRoot == nullptr) { if (max < curr) max = curr; return; } TreeDepthHelper(pRoot->left, curr + 1, max); TreeDepthHelper(pRoot->right, curr + 1, max); } int TreeDepth(TreeNode* pRoot) { if (pRoot == nullptr) return 0; int depth = 0;//遍历到当前位置时,最大的值 int max = 0;//返回值 TreeDepthHelper(pRoot, depth, max); return max; } };
方法二:
class Solution { public: int TreeDepth(TreeNode* pRoot) { if (pRoot == nullptr) { return 0; } return 1 + max(TreeDepth(pRoot->left), TreeDepth(pRoot->right)); //1+左子树中最大的数字或者右子树最大的数字 } };
方法三:
层序遍历,有多少层就是多高
class Solution { public: int TreeDepth(TreeNode* pRoot) { if (pRoot == nullptr) return 0; queue<TreeNode*> q; q.push(pRoot); int depth = 0; while (!q.empty()) { int size = q.size(); depth++; for (int i = 0; i < size; i++) { TreeNode* curr = q.front(); q.pop(); if (curr->left) q.push(curr->left); if (curr->right) q.push(curr->right); } } return depth; } };
这篇关于JZ55二叉树的深度C++的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享