二叉树最大宽度和高度

    给出一个二叉树,输出它的最大宽度和高度。

第一行一个整数n。

下面n行每行有两个数,是这个二叉树连接到的节点的编号,如果没有连接到节点,则为0。

输出共一行,输出二叉树的最大宽度和高度,用一个空格隔开。

5

2 3

4 5

0 0

0 0

0 0

2 3

#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<bitset>
#include<iomanip>

using namespace std;

int a[ 40 ][ 3 ] = { 0 } , num[ 40 ] ;

int w = 0 , d = 0 ;
void dfs( int x , int y )
{
	num[ y ]++ ;
	if( y > w )
		w = y ;
	if( a[ x ][ 1 ] != 0 )
		dfs( a[ x ][ 1 ] , y + 1 ) ;
	if( a[ x ][ 2 ] != 0 )
		dfs( a[ x ][ 2 ] , y + 1 ) ;
}
int main()
{
	int n ;
	cin >> n ;
	for( int i = 1 ; i <= n ; i++)
		cin >> a[ i ][ 1 ] >> a[ i ][ 2 ] ;
	dfs( 1 , 1 ) ;
	for( int i = 1 ; i <= 16 ; ++i )
		if( num[ i ] > d )
			d = num[ i ] ;
	cout << d << " " << w << endl ;
	return 0 ;
}


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值