二叉树的基本操作

typedef int BTDataType;

typedef struct BinaryTreeNode
{
	BTDataType data;
    struct BinaryTreeNode* left;
    struct BinaryTreeNode* right;
}BT;

递归实现二叉树的前序、中序、后序遍历

//前序遍历 
void PrevOrder(BT* root)
{
	if(root==NULL)
	{	
		printf("NULL ");
		return;
	}
	printf("%d ",root->data);
	PrevOrder(root->left);
	PrevOrder(root->right);
 } 
 
//中序遍历
void InOrder(BT* root)
{
	if(root==NULL)
	{
		printf("NULL ");
		return;
	}
	InOrder(root->left);
	printf("%d ",root->data);
	InOrder(root->right);
 } 
 
//后序遍历
void PostOrder(BT* root)
{
	if(root==NULL)
	{	
		printf("NULL ");
		return;
	}
	PostOrder(root->left);
	PostOrder(root->right);
	printf("%d ",root->data);
 }  

遍历法计算节点个数

int size=0;
void TreeSize(BT* root)
{
	if(root==NULL){
		return;
	}
	size++; 
	TreeSize(root->left);
	TreeSize(root->right);
 } 

分治法计算节点数

int TreeSize2(BT* root)
{
	if(root==NULL)
	{
		return 0;
	 } 
	return 1+TreeSize2(root->left)+TreeSize2(root->right);
}

计算叶子节点数

int BTreeLeafSize(BT* root)
{
	if(root==NULL)
	{
		return 0;
	}
	
	if(root->left==NULL&&root->right==NULL)
	{
		return 1;
	}
	
	return BTreeLeafSize(root->left)+BTreeLeafSize(root->right);
}

计算第K层的节点数(root为第一层)

int BTreeKLeveLSize(BT* root,int K) 
{
	if(root==NULL)
	{
		return 0;
	}
	
	if(K==1)
	{
		return 1;
	}
	
	return BTreeKLeveLSize(root->left,K-1)+BTreeKLeveLSize(root->right,K-1);
}

找到为x的节点

BT* TreeFind(BT* root,int x)
{
	if(root==NULL)
	    return NULL;
	if(root->data==x)
	    return root;
	
	BT* ret=TreeFind(root->left,x);
	if(ret!=NULL)
	{
		return root;
	}
	
	ret=TreeFind(root->right,x);
	if(ret!=NULL)
	{
		return root;
	}
	return NULL;
} 
  • 6
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 5
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值