严蔚敏 数据结构习题6.62

对以孩子-兄弟链表表示的树编写计算深度的算法。

#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <malloc.h>
using namespace std;
typedef struct tnode
{
    int data;
    struct tnode *child,*brother;
}tnode,*bitree;
void creattree(bitree &bt)
{
    char ch;
    scanf("%c",&ch);
    getchar();
    if(ch=='#')
        bt=NULL;
    else
    {
        bt=(tnode*)malloc(sizeof(tnode));
        bt->data=ch;
        printf("输入%c的孩子结点:",ch);
        creattree(bt->child);
        printf("输入%c的兄弟结点:",ch);
        creattree(bt->brother);

    }
}

int tdepth(bitree t)
{
    int h1,h2;
    if(!t)
    {
        return 0;
    }
    else
    {
        h1=1+tdepth(t->child);
        h2=tdepth(t->brother);
        return h1>h2?h1:h2;
    }
}


int main()
{
     bitree bt;
    int k;
    bt=(tnode*)malloc(sizeof(tnode));
    printf("输入根节点:");
    creattree(bt);
    k=tdepth(bt);
    printf("%d\n",k);
    return 0;
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值