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;
	}
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值