经典数据结构——二叉树的实现(前、中、后、层序、完全二叉树判断)

typedef char BTDataType;
 
typedef struct BinaryTreeNode
{
	BTDataType _data;
	struct BinaryTreeNode* _left;
	struct BinaryTreeNode* _right;
}BTNode;
 
// 通过前序遍历的数组"ABD##E#H##CF##G##"构建二叉树
BTNode* BinaryTreeCreate(BTDataType* a, int n, int* pi);
// 二叉树销毁
void BinaryTreeDestory(BTNode** root);
// 二叉树节点个数
int BinaryTreeSize(BTNode* root);
// 二叉树叶子节点个数
int BinaryTreeLeafSize(BTNode* root);
// 二叉树第k层节点个数
int BinaryTreeLevelKSize(BTNode* root, int k);
// 二叉树查找值为x的节点
BTNode* BinaryTreeFind(BTNode* root, BTDataType x);
// 二叉树前序遍历 
void BinaryTreePrevOrder(BTNode* root);
// 二叉树中序遍历
void BinaryTreeInOrder(BTNode* root);
// 二叉树后序遍历
void BinaryTreePostOrder(BTNode* root);
// 层序遍历
void BinaryTreeLevelOrder(BTNode* root);
// 判断二叉树是否是完全二叉树
int BinaryTreeComplete(BTNode* root);



//函数实现
typedef char BTDataType;


typedef struct BinaryTreeNode{
	BTDataType _data;
	struct BinaryTreeNode* _left;
	struct BinaryTreeNode* _right;

}BTNode;


//
//BTNode* CreateBTNode(int x)
//{
//	BTNode *node = (BTNode*)malloc(sizeof(BTNode));
//	node->_data = x;
//	node->_left = NULL; 
//	node->_right = NULL;
//
//	return node;
//}


void PrevOrder(BTNode* root)
{
	if (root == NULL)
	{
		//printf("NULL ");
		return;
	}
	printf("%c ", root->_data);
	PrevOrder(root->_left);
	PrevOrder(root->_right);
}


void InOrder(BTNode* root)
{
	if (root == NULL)
	{
		//printf("NULL ");
		return;
	}
	InOrder(root->_left);
	printf("%c ", root->_data);
	InOrder(root->_right);


}


void PostOrder(BTNode* root)
{


	if (root == NULL)
	{
		//printf("NULL ");
		return;
	}


	PostOrder(root->_left);
	PostOrder(root->_right);
	printf("%c ", root->_data);


}


BTNode *CreateBTNode1(char *s, int *i)
{

	if (s[*i] == '#' || s[*i] == '\0')
	{


		return NULL;

	}


	else{
		
		BTNode *t = (BTNode*)malloc(sizeof(BTNode));
		assert(t != NULL);
		t->_data = s[*i];
		(*i)++;
		t->_left = CreateBTNode1(s, i);
		(*i)++;
		t->_right = CreateBTNode1(s, i);
		return t;


	}

}


void BinaryTreeDestroy(BTNode *root)
{
	if (root)
	{
		BinaryTreeDestroy(root->_left);
		BinaryTreeDestroy(root->_right);
		free(root);
		root = NULL;

	}
	else{
		return;
	}

}


void BinaryTreeLevelOrder(BTNode* root)
{

	Queue qu;
	BTNode *cur;
	QueueInit(&qu);
	QueuePush(&qu, root);
	while (!QueueEmpty(&qu))
	{
		cur = QueueFront(&qu);
		printf("%c ", cur->_data);


		if (cur->_left)
		{
			QueuePush(&qu, cur->_left);
		}
		if (cur->_right)
		{
			QueuePush(&qu, cur->_right);
		}


		QueuePop(&qu);

	}


}

int BinaryComplete(BTNode *root)
{
	Queue qu;
	int targ = 0;
	BTNode *cur;
	QueueInit(&qu);
	QueuePush(&qu, root);

	while (!QueueEmpty(&qu))
	{


		cur = QueueFront(&qu);
		//putchar(cur->_data);


		if (cur->_left == NULL&&cur->_right != NULL)
		{
			return 0;
		}
		if (targ&&(cur->_left || cur->_right))
		{
			return 0;
		}


		if (cur->_left)
		{
			QueuePush(&qu, cur->_left);
		}
		if (cur->_right)
		{
			QueuePush(&qu, cur->_right);
		}


		else{


			targ = 1;


		}
		QueuePop(&qu);

	}


	QueueDestroy(&qu);
	return 1;

}
int BinaryTreeSize(BTNode* root)
{


	if (root==NULL)
	{
		return 0;

	}

	return BinaryTreeSize(root->_left) + BinaryTreeSize(root->_right) + 1;


}
int BinaryTreeLeafSize(BTNode* root)
{


	int knum = BinaryTreeSize(root);
	return knum-1;


}
int BinaryTreeLevelSize(BTNode* root,int k)
{
	if (k == 0 || root == NULL)
	{
		return 0;
	}
	if (k == 1)
	{
		return 1;
	}


	return BinaryTreeLevelSize(root->_left,k-1) + BinaryTreeLevelSize(root->_right,k-1);

}


BTNode *BinaryTreeFind(BTNode* root,BTDataType key)
{


	if (root == NULL||root->_data==key)
	{
		return root;

	}


	BTNode *p = BinaryTreeFind(root->_left, key);


	if (p != NULL)
	{
		return p;


	}

	return BinaryTreeFind(root->_right, key);

}


int BinTreeNodeHeight(BTNode* root)
{

	if (root==NULL)
	{
		return 0;
	}

	int left = BinTreeNodeHeight(root->_left);
	int right = BinTreeNodeHeight(root->_right);
	return (left > right ? left : right) + 1;

}

//
//void Test1()
//{
//	BTNode *A = CreateBTNode('A');
//	BTNode *B = CreateBTNode('B');
//	BTNode *C = CreateBTNode('C');
//	BTNode *D = CreateBTNode('D');
//	BTNode *E = CreateBTNode('E');
//	BTNode *F = CreateBTNode('F');
//	BTNode* G = CreateBTNode('G');
//	A->_left = B;
//	A->_right = C;
//	B->_left = D;
//	B->_right = E;
//	C->_left = F;
//	C->_right = G;
//
//
//	PrevOrder(A);
//
//
//
//}
void Test2()
{
	//char *s = "ABC##DE##F##G#H##";
	char *s = "ABC##D##EF##G##";
	//char *s = "AB##C##";
	int i = 0;
	BTNode* root=CreateBTNode1(s, &i);
	printf("PrevOrder:");
	PrevOrder(root);
	printf("\n");
	printf("InOrder:");
	InOrder(root);
	printf("\n");
	printf("PostOrder:");
	PostOrder(root);
	printf("\n");
	printf("LevelOrder:");
	BinaryTreeLevelOrder(root);
	printf("\n");


	int k=BinaryComplete(root);
	if (k == 1)
	{
		printf("是完全二叉树!\n");
	}
	else{
		printf("不是完全二叉树!\n");
	}
	
	int heigh = BinTreeNodeHeight(root);
	printf("heigh=%d \n", heigh);
	int Size = BinaryTreeSize(root);
	printf("Size=%d \n", Size);


	int size = BinaryTreeLeafSize(root);
	printf("size=%d \n", size);
	int knum=BinaryTreeLevelSize(root,3);
	printf("%d ", knum);
}

int main()
{

	//Test1();
	Test2();

	return 0;
	
}



评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值