介绍一种简单方法
1 //a是b的孩子 2 for(int i=1;i<=n;i++) 3 { 4 cin>>a>>b; 5 tree[a].right=tree[b].left; 6 tree[b].left=a; 7 }