{P4913 二叉树深度 } PK {P1305 新二叉树 }

在刷二叉树的时候,发现两道很类似的题,虽然所求不一样,但是方法却很类似,尤其第二个将字符弄成ASCII码,简直了。

供自己比对学习。

 

//题一代码
#include<iostream>
#include<algorithm>
#include<string>
#include<queue>
#include<math.h>
using namespace std;
const int mod=1000000007;
const int MAX=1e6+10;
#define ull unsigned long long
#define ll  long long
struct node
{
    int l,r;



} tree[MAX];
int dfs(int id,int deep)
{
    static int ans=0;
    if(id==0)return ans;
    ans=ans>deep?ans:deep;
    dfs(tree[id].l,deep+1);
    dfs(tree[id].r,deep+1);

}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    ll t=1,n;
    //cin>>t;
    while(t--)
    {
        cin>>n;
        for(int i=1; i<=n; i++)cin>>tree[i].l>>tree[i].r;
        cout<<dfs(1,1);



    }


}
//题二代码
#include<iostream>
#include<algorithm>
#include<string>
#include<queue>
#include<math.h>
using namespace std;
const int mod=1000000007;
const int MAX=1e6+10;
#define ull unsigned long long
#define ll  long long
struct node
{
    char l,r;


} tree[MAX];
char a[MAX];
void dfs(char x)
{
    if(x=='*')return;
    cout<<x;
    dfs(tree[x].l);
    dfs(tree[x].r);


}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    ll t=1,n;
    //cin>>t;
    while(t--)
    {
        cin>>n;
        for(int i=1; i<=n; i++)
        {
            cin>>a[i];
            cin>>tree[a[i]].l>>tree[a[i]].r;
        }
        dfs(a[1]);

    }


}

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值