LeetCode: Maximum Depth of Binary Tree

题目如下:

Given a binary tree, find its maximum depth.

The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.

即求二叉树的(最大)深度。


有两种思路:一是使用递归,二是使用二叉树层序遍历。

递归算法:用递归的函数,返回左子树或者右子树中大的深度加1,作为自己的深度。

int maxDepth(TreeNode *root)
{
	if (root == NULL) return 0;
	int left = maxDepth1(root->left);
	int right = maxDepth1(root->right);
	return left > right ? left + 1 : right + 1;
}

二叉树的层序遍历使用队列将节点依次存储,每一个出列一个节点,当一层节点完全出列的时候,深度加1。

int maxDepth(TreeNode *root)
{
	if (root == NULL) return 0;
	queue<TreeNode *>  btQueue;//使用队列进行层序遍历
	btQueue.push(root);
	int count = 1;//记录当前层的节点个数
	int depth = 0;//记录当前遍历的深度
	while (!btQueue.empty())
	{
		TreeNode *currentNode = btQueue.front();
		btQueue.pop();//每次循环出队一个节点
		count--;

		if (currentNode->left) btQueue.push(currentNode->left);
		if (currentNode->right) btQueue.push(currentNode->right);

		if (count == 0)
		{
			//每当遍历完上一次节点的时候,层数depth++,count修改为现在队列中的元素个数,即下层的节点个数
			depth++;
			count = btQueue.size();
		}
	}
	return depth;
}

在Leetcode上进行提交,递归算法的运行时间为22ms,非递归的层序遍历算法为14ms,递归算法虽然代码简洁,思路清晰,但是在一定程度上消耗比较大。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值