二叉排序树(建树,先序,中序,后序遍历) #include<iostream> #include<cstdio> using namespace std; struct Node { Node *lson,*rson; int num; } node[105]; int cntn; Node *create(int num) { node[cntn].lson=node[cntn].rson=NULL; node[cntn].num=num; return &node[cntn++]; } int cnt,n; void preOrder(Node *rt) { if(rt==NULL) return; //cout<<“*”<<endl; printf(“%d”,rt->num); if(++cnt==n) printf(” ”); else printf(” “); preOrder(rt->lson); preOrder(rt->rson); } void inOrder(Node *rt) { if(rt==NULL) return; //cout<<“*”<<endl; inOrder(rt->lson); printf(“%d”,rt->num); if(++cnt==n) printf(” ”); else printf(” “); inOrder(rt->rson); } void postOrder(Node *rt) { if(rt==NULL) return; //cout<<“*”<<endl; postOrder(rt->lson); postOrder(rt->rson); printf(“%d”,rt->num); if(++cnt==n) printf(” ”); else printf(” “); } Node *insert(Node *rt,int num) { if(rt==NULL) { rt=create(num); return rt; } if(num<rt->num) rt->lson=insert(rt->lson,num); else if(num>rt->num) rt->rson=insert(rt->rson,num); } int main() { while(scanf(“%d”,&n)!=EOF) { cntn=0; Node *rt=NULL; for(int i=0; i<n; i++) { int num; scanf(“%d”,&num); rt=insert(rt,num); } cnt=0; preOrder(rt); cnt=0; inOrder(rt); cnt=0; postOrder(rt); } return 0; }
2024最新激活全家桶教程,稳定运行到2099年,请移步至置顶文章:https://sigusoft.com/99576.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。 文章由激活谷谷主-小谷整理,转载请注明出处:https://sigusoft.com/84940.html