码迷,mamicode.com
首页 > 其他好文 > 详细

编程之美之求二叉树中节点的最大距离

时间:2014-08-20 19:40:12      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:二叉树   节点的最大距离   编程之美   递归   

题目:如果我们把二叉树看成一个图,父子节点之间的连线看成是双向的,我们姑且定义"距离"为两节点之间边的个数。写一个程序求一棵二叉树中相距最远的两个节点之间的距离。

bubuko.com,布布扣

分析:树上分析的很清楚,计算一个二叉树的最大距离有两个情况:

1、 路径经过左子树的最深节点,通过根节点,再到右子树的最深节点。

2、 路径不穿过根节点,而是左子树或右子树的最大距离路径,取其大者。

但是树上的代码使用了额外的节点字段,这里给出我的代码,思路是一样的:

struct BinaryTree
{
	int value;
	BinaryTree* left;
	BinaryTree* right;
	BinaryTree(int x):value(x),left(NULL),right(NULL){}
};

void findMaxLength(BinaryTree* root,int& depth,int& maxLength)
{
	if(root == NULL)
	{
		depth = -1;
		maxLength = 0;
		return;
	}
	int ldepth,rdepth,lmaxLength,rmaxLength;
	findMaxLength(root -> left,ldepth,lmaxLength);
	findMaxLength(root -> right,rdepth,rmaxLength);
	depth = max(ldepth,rdepth)+1;
	maxLength = max(lmaxLength,rmaxLength);
	maxLength = max(maxLength,ldepth+rdepth+2);
}

int findMaxLength(BinaryTree* root)
{
	int depth,maxLength;
	findMaxLength(root,depth,maxLength);
	return maxLength;
}


编程之美之求二叉树中节点的最大距离,布布扣,bubuko.com

编程之美之求二叉树中节点的最大距离

标签:二叉树   节点的最大距离   编程之美   递归   

原文地址:http://blog.csdn.net/fangjian1204/article/details/38705153

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!