数据结构学习笔记(用链表实现二叉树)

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

struct tree
{
	int data;
	struct tree *left,*right;
};

typedef struct tree node;
typedef node *btree;
btree creat_tree(btree,int);

int main()
{
	int i, data[]={5,6,24,8,12,3,17,1,9};
	btree ptr=NULL;
	btree root=NULL;

	for(i=0;i<9;i++)
	{
		ptr=creat_tree(ptr,data[i]);

	}

	printf("left_tree:\n");
	root=ptr->left;
	while(root!=NULL){
		printf("%d\n",root->data);
		root=root->left;
	}
	printf("--------------------\n");

	printf("right_tree:\n");
	root=ptr->right;
	while(root!=NULL){
		printf("%d\n",root->data);
		root=root->right;
	}

	printf("\n");
	system("pause");
	return 0;
}

btree creat_tree(btree root,int val)
{
	btree newnode,current,backup;
	newnode=(btree)malloc(sizeof(node));
	newnode->data=val;
	newnode->left=NULL;
	newnode->right=NULL;
	if(root==NULL)
	{
		root=newnode;
		return root;
	}
	else
	{
		for(current=root;current!=NULL;)
		{
			backup=current;
			if(current->data>val)
			{
				current =current->left;
			}
			else
			{
				current=current->right;
			}
		}
			if(backup->data>val)
				backup->left=newnode;
			else
				backup->right=newnode;
	}
	return root;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值