1102 Invert a Binary Tree (25 分)

#include<bits/stdc++.h>
using namespace std;
#define debug puts("YES");
#define rep(x,y,z) for(int (x)=(y);(x)<(z);(x)++)
#define ll long long
#define ull unsigned long long

#define lrt int l,int r,int rt
#define lson l,mid,rt<<1
#define rson mid+1,r,rt<<1|1
#define root l,r,rt
#define mst(a,b) memset((a),(b),sizeof(a))
#define pii pair<int,int>
#define piii pair<int,pii>
#define fi first                                  
#define se second
#define mk(x,y) make_pair(x,y)

#define base 2333
const int mod=1e9+7;
const int maxn=1e3+10;
const int ub=1e6;
ll powmod(ll x,ll y){ll t; for(t=1;y;y>>=1,x=x*x%mod) if(y&1) t=t*x%mod; return t;}
ll gcd(ll x,ll y){
    if(y==0) return x;
    return gcd(y,x%y);
}
int n,x,y;
char c1,c2;
int L[maxn],R[maxn];
int vis[maxn];
vector<int> g[maxn],ans;
void dfs(int u,int dep){
    if(u==-1) return ;
    g[dep].push_back(u);
    dfs(R[u],dep+1);
    ans.push_back(u);
    dfs(L[u],dep+1);
}
int main(){
    ios::sync_with_stdio(false);
    cin>>n;
    rep(i,0,n){
        cin>>c1>>c2;
        if(c1!='-') x=(c1-'0');
        else x=-1;
        if(c2!='-') y=(c2-'0');
        else y=-1;
        L[i]=x,R[i]=y;
        if(x!=-1) vis[x]=1;
        if(y!=-1) vis[y]=1;
    }
    if(n==0) {cout<<endl<<endl;return 0;}
    int rot=-1;
    rep(i,0,n) if(vis[i]==0) rot=i;
    dfs(rot,0);
    cout<<g[0][0];
    rep(i,1,n) rep(j,0,g[i].size())
        cout<<" "<<g[i][j];
    cout<<endl;
    rep(i,0,ans.size()){
        cout<<ans[i];
        if(i==ans.size()-1) cout<<"\n";
        else cout<<" ";
    }
    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值