二叉树中序遍历非递归算法(c语言实现)
最佳回答
最新回答共有2条回答
-
2026-03-30 16:14:26兴奋的雪糕
回复#include "stdio。h"#include "stdlib。h"#include "string。h"#define null 0struct node {char data;struct node *lchild;struct node *rchild;};//先序,中序 建树struct node *create(char *pre,char *ord,int n){struct node * head;int ordsit;head=null;if(ndata=*pre;head->lchild=head->rchild=null;ordsit=0;while(ord[ordsit]!=*pre){ordsit++;}head->lchild=create(pre+1,ord,ordsit);head->rchild=create (pre+ordsit+1,ord+ordsit+1,n-ordsit-1);return head;}}//中序递归遍历void inorder(struct node *head){if(!head)return;else{inorder(head->lchild );printf("%c",head->data );inorder(head->rchild );}}//中序非递归遍历void inorder1(struct node *head){struct node *p;struct node *stack[20];int top=0;p=head;while(p||top!=0){while (p){stack[top++]=p;p=p->lchild ;}p=stack[--top];printf("%c ",p->data );p=p->rchild ;}}//主函数int main(){struct node * head;char pre[30],ord[30];int n;gets(pre);gets(ord);n=strlen(pre);head=create(pre,ord,n);inorder(head);printf("\n");inorder1(head);printf("\n");}//测试事例;几个月前自己编写,原版vc++ 6。0实验通过怎么样,老板,好激动给点面子给分!给分啊
热门文章
- 康达学院专转本五年制
- 高考一个考场分ab卷吗
- not only but also用法
- 某物体做自由落体运动,从释放开始计时,则物体在前2s内的平均速度为______m/s,物体下落2m时的速度大小为______m/s.
- 三角函数公式大全表格
- 地理中考必背知识点2022
- 2013-2014学年小学六年级科学上学期期末考试试卷及答案
- 人教版2014-2015学年小学五年级英语第二学期期中教学质量检测试卷及答案
- 【Linux驱动开发】设备树详解(二)设备树语法详解
- 别跟客户扯细节
- 在别的城市买房子能落户吗
- 卖房前要把装修贷还完吗
- 高中政治教学提高教学效果的方法探究
- “互联网+”背景下的初中英语课堂教学改革与创新策略研究
- 2022年终止合同范本
- 租房合同范本范文
- 如何挑选土豆
- 如何挑选土鸡
