爱吃橘子的猴 2023-02-23 22:59 采纳率: 100%
浏览 17
已结题

求二叉树深度洛谷样例全过但测评全re?

img

#include<iostream>
using namespace std;
struct node{
    struct node*left1=NULL;
    struct node*right1=NULL;
};
typedef struct node list;
void judge(node*a,int now,int*ans){
    if(a->left1!=NULL){
        now++;
        *ans=max(now,*ans);
        judge(a->left1,now,ans);
        judge(a->right1,now,ans);
    }
    if(a->right1!=NULL){
        if(a->left1!=NULL)now--;
            now++;
            *ans=max(now,*ans);
            judge(a->left1,now,ans);
            judge(a->right1,now,ans);
        }
}
int main(){
    int n;
    cin>>n;
    node a[n+1];
    for(int i=1;i<=n;i++){
        int p,q;
        cin>>p>>q;
        node*l=&a[p];
        node*r=&a[q];
           a[i].left1=l;
        a[i].right1=r;
        if(p==0)a[i].left1=NULL;
        if(q==0)a[i].right1=NULL;
    }
    int ans=1;
    judge(&a[1],1,&ans);
    cout<<ans<<endl;
    return 0;
}
  • 写回答

3条回答 默认 最新

  • 关注

    深度优先搜索即可,你写复杂了

    img

    #include<iostream>
    #include<cstdio>
    #include<algorithm>
    #include<cmath>
    #include<cstring>
    using namespace std;
    struct node{
        int l,r;
    }a[1001000];//记录每个节点的左右节点
    int Max=-1,n;
    void dfs(int root,int step){
        if(root==0) return;//如果该节点为0(即上它的爸爸没有这个儿子),返回
        Max=max(Max,step);//记录最大值
        dfs(a[root].l,step+1);//搜索它的左儿子
        dfs(a[root].r,step+1);//搜索它的右儿子
    }
    int main(){
        cin>>n;//输入n
        for(int i=1;i<=n;i++){
            cin>>a[i].l>>a[i].r;//输入该节点的左节点和右节点
        }
        dfs(1,1);//从1号节点,深度为1开始搜索 
        cout<<Max;//输出最大值
        return 0;
    }
    
    
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

问题事件

  • 系统已结题 3月4日
  • 已采纳回答 2月24日
  • 创建了问题 2月23日

悬赏问题

  • ¥20 ML307A在使用AT命令连接EMQX平台的MQTT时被拒绝
  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题