二叉树操作

#include<stdio.h>
#include<stdlib.h>
#include<assert.h>

struct tnode
{
	int data;
	struct tnode *lchild;
	struct tnode *rchild;
}tnode;
typedef struct tnode * TNode;
//此程序中没用上
TNode newNode(int data)
{
	TNode node = (TNode)malloc(sizeof(struct tnode));
	node->data = data;
	node->lchild = NULL;
	node->rchild = NULL;
	return node;
}


TNode createTree(TNode root)
{
	int data = 0;
	scanf("%d", &data);
	if(data == -1) return NULL;
	root = (TNode)malloc(sizeof(struct tnode));
	root->data = data;
	root->lchild = NULL;
	root->rchild = NULL;
	root->lchild = createTree(root->lchild);//如果不赋值给root->lchild则左子树不会被创建,root->lchild依然会是NULL
	root->rchild = createTree(root->rchild);
	return root;
}

void preorderTraverse(TNode root)
{
	if(root != NULL)
	{
		printf("%d ", root->data);
		preorderTraverse(root->lchild);
		preorderTraverse(root->rchild);
	}
}

int treeDepth(TNode root)
{
	if(root == NULL)
		return 0;
	int nleft = treeDepth(root->lchild);
	int nright = treeDepth(root->rchild);
	return (nleft > nright) ? (nleft + 1) : (nright + 1);
}

void treeFree(TNode root)
{
	if(root != NULL)
	{
		treeFree(root->lchild);
		treeFree(root->rchild);
		printf("%d ", root->data);
		free(root);
	}
}

void test()
{
	TNode root = NULL;
	root = createTree(root);
	preorderTraverse(root);
	printf("\n");
	int depth = treeDepth(root);
	printf("depth = %d\n", depth);
	treeFree(root);
}

int main()
{
	test();
	return 0;
}
/*****************************\
               1
		2              6
    -1      5       4     -1
         -1  -1  -1  -1  
\*****************************/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值