【数据结构】创建二叉树的方法

前端之家收集整理的这篇文章主要介绍了【数据结构】创建二叉树的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

创建普通二叉树的方法

具体可以看代码

//交谈中请勿轻信汇款、中奖信息、陌生电话,勿使用外挂软件。
//

#include <iostream>
using namespace std;
typedef struct BiTNode
{
	char data;
	struct BiTNode *lchild,*rchild;

}BiTNode;

BiTNode *CreateBinTree ()
{ 
	char ch;
	//scanf("%c",&ch);
	cin>>ch;
	BiTNode *root = (BiTNode*)malloc(sizeof(BiTNode));//根节点

	if(ch=='#') 
		root = NULL; //将相应指针置空 
	else
	{ 
		root->data=ch;
		root->lchild=CreateBinTree(); //构造左子树
		root->rchild=CreateBinTree(); //构造右子树
	}

	return root;
}

void preOrder(BiTNode *root)
{
	if (root==NULL)
		return;
	cout<<root->data<<" ";
	preOrder(root->lchild);
	preOrder(root->rchild);
}


int main()
{
	BiTNode *root = NULL;
	cout<<"Please Input The Node:"<<endl;
	root = CreateBinTree();

	cout<<endl;
	cout<<"The PreOrder is:";
	preOrder(root);
	cout<<endl;
	return 0;
}

原文链接:https://www.f2er.com/datastructure/383229.html

猜你在找的数据结构相关文章