二叉树的创建和遍历复习

二叉树结构体,代码:

struct node{
	int data;
	struct node* lchild;
	struct node* rchild;
};

写结构体的时候,脑子里要浮现这张图:

中间的那个是data,放树里面的数据,struct node*,其中*表示指向,struct node表示同样的node结构。

然后是用先序遍历创建二叉树:

void pre_cre(tree &bt){
	char a;
	a=getchar();
	if(a!='#'){
		bt = (tree)malloc(sizeof(tree));
		bt->data=a;
		pre_cre(bt->lchild);
		pre_cre(bt->rchild);
	}
	else{
		bt=NULL;
	}
}

先回顾一下getchar()的知识点。

①getchar()读取字符

#include<bits/stdc++.h>
using namespace std;

int main(){
	char c=getchar();
	printf("%c",c);
	
}

结果:

 

②getchar()读取字符串。

第一次getchar()的时候人工输入字符串,以后每次读取的时候会直接从缓存区读取。

#include<bits/stdc++.h>
using namespace std;

int main(){
	char c=getchar();
	printf("%c",c);
	printf("\n");
	char b=getchar();
	printf("%c",b);
	printf("\n");
	c=getchar();
	printf("%c",c);
	
}

结果:

 

 二叉树的前中后序遍历代码:

void xianxu(tree bt){
	if(bt==NULL) return;
	cout<<bt->data<<" ";
	xianxu(bt->lchild);
	xianxu(bt->rchild);
}

void zhongxu(tree bt){
	if(bt==NULL) return;
	zhongxu(bt->lchild);
	cout<<bt->data<<" ";
	zhongxu(bt->rchild);
}

void houxu(tree bt){
	if(bt==NULL) return;
	houxu(bt->lchild);
	houxu(bt->rchild);
	cout<<bt->data<<" ";
}

完整代码:

#include<bits/stdc++.h>
using namespace std;
struct node{
	char data;
	struct node* lchild;
	struct node* rchild;
};
typedef struct node btnode;
typedef struct node* tree;

void pre_cre(tree &bt){
	char a;
	a=getchar();
	if(a!='#'){
		bt = (tree)malloc(sizeof(tree));
		bt->data=a;
		pre_cre(bt->lchild);
		pre_cre(bt->rchild);
	}
	else{
		bt=NULL;
	}
}
void xianxu(tree bt){
	if(bt==NULL) return;
	cout<<bt->data<<" ";
	xianxu(bt->lchild);
	xianxu(bt->rchild);
}

void zhongxu(tree bt){
	if(bt==NULL) return;
	zhongxu(bt->lchild);
	cout<<bt->data<<" ";
	zhongxu(bt->rchild);
}

void houxu(tree bt){
	if(bt==NULL) return;
	houxu(bt->lchild);
	houxu(bt->rchild);
	cout<<bt->data<<" ";
}

int main(void){
	tree root=NULL;
	pre_cre(root);
	cout<<endl;
	xianxu(root);
	cout<<endl;
	zhongxu(root);
	cout<<endl;
	houxu(root);
	cout<<endl;
	
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

奇犽小可爱

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值