欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

1151LCAinaBinaryTree(前序中序遍历0/30

时间:2023-04-29

添加链接描述
通过map记录下标 进行遍历,可以直接得到pre的根
这样就不需要k++,在建树的过程中寻找如果下标都在根两边说明找到了最近的点,否则就往两边找

#includeusing namespace std;const int N=1e4+9;int in[N],pre[N];int n,q;int ok=0;unordered_mappt;void lca(int inl,int inr,int root,int a,int b){ if(ok)return; if(inrk&&ptb>k){ lca(k+1,inr,root+(k-inl)+1,a,b); } else if((ptak)||(pta>k&&ptb>q>>n; for(int i=1;i<=n;i++){ scanf("%d",&in[i]); pt[in[i]]=i; } for(int i=1;i<=n;i++){ scanf("%d",&pre[i]); } while(q--){ int a,b; scanf("%d%d",&a,&b); if(pt[a]==0&&pt[b]==0){ printf("ERROR: %d and %d are not found.n",a,b); } else if(pt[a]==0||pt[b]==0){ printf("ERROR: %d is not found.n",pt[a]==0?a:b); } else { ok=0; lca(1,n,1,a,b); } } return 0;}

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。