二叉树的递归实现

  二叉树是一种非线性结构,用途非常广泛。二叉树它的每一个结点的度都不大于2,所以一般用二叉链表来实现二叉树。

二叉链表:

   二叉树可以分为根结点和左子树,右子树。左子树和右子树依旧可以这样划分。所以二叉树是典型的递归结构,所以用递归来实现二叉树的逻辑是非常简单的,只要不断的对二叉树进行划分即可。递归创建二叉树的时候选择先序创建时最简单的。
#pragma once 
#include<cassert>
#include<iostream>
#include<queue>
using namespace std;

template<typename T>
struct BinaryTreeNode
{
	T _data;
	BinaryTreeNode *_left;
	BinaryTreeNode *_right;
	BinaryTreeNode(const T& data = T())
		:_data(data)
		, _left(NULL)
		, _right(NULL){}
};


template<typename T>
class BinaryTree
{
	typedef BinaryTreeNode<T> Node;
public:
	BinaryTree()
		:_root()
	{}

	BinaryTree(const T *array,size_t size,const T& invalid)
	{
		size_t index = 0;
		_root=_CreatTree(array,size,index,invalid);
	}

	BinaryTree(const BinaryTree<T>& t)
	{
		_root=_Copy(t._root);
	}

	BinaryTree& operator=(BinaryTree<T>& t)
	{
		if (this != &t)             //防止自赋值
		{
			BinaryTree<T> tmp(t);
			swap(_root,tmp._root);
		}
		return *this;
	}

	~BinaryTree()
	{
		_destory(_root);
	}

	size_t Leaf()         //求叶子结点的个数
	{
		return _leaf(_root);
	}

	size_t Size()    //求结点个数
	{
		return _Size(_root);
	}

	size_t Depth()          //求深度
	{
		return _Depth(_root);
	}

	void PrevOder()     //前序遍历
	{
		_PrevPrint(_root);
		cout << endl;
	}

	void InOder()      //中序遍历
	{
		_InPrint(_root);
		cout << endl;
	}

	void BackOder()      //后序遍历
	{
		_BackPrint(_root);
		cout << endl;
	}

	void TierOder()       //层序遍历
	{
		_TierPrint(_root);
		cout << endl;
	}

protected:
	Node* _CreatTree(const T *array, size_t size, size_t& index, const T& invalid)
	{
		assert(array);
		Node *root=NULL;
		if (index < size&&array[index] != invalid)
		{
			root = new Node(array[index]);                                  //创建根节点
			root->_left = _CreatTree(array,size,++index,invalid);           //递归创建左子树
			root->_right= _CreatTree(array,size,++index,invalid);           //递归创建右子树
		}
		return root;
	}

	void _PrevPrint(Node *root)
	{
		Node *cur =root;
		if (cur)
		{
			cout << cur->_data << " ";
			_PrevPrint(cur->_left);
			_PrevPrint(cur->_right);
		}
	}

	void _InPrint(Node *root)
	{
		Node *cur = root;
		if (cur)
		{
			_InPrint(cur->_left);
			cout << cur->_data << " ";
			_InPrint(cur->_right);
		}
	}

	void _BackPrint(Node *root)
	{
		Node *cur = root;
		if (cur)
		{
			_BackPrint(cur->_left);
			_BackPrint(cur->_right);
			cout << cur->_data << " ";
		}
	}

	void _TierPrint(Node *root)
	{
		queue<Node*> q;
		Node* cur=root;
		q.push(cur);
		while(!q.empty())
		{
			Node* tmp = q.front();
			cout << tmp->_data <<" ";

			if (tmp->_left)
			    q.push(tmp->_left);
			if (tmp->_right)
				q.push(tmp->_right);
			q.pop();
		}
	}

	size_t _Size(Node *root)
	{
		if (root == NULL)
			return 0;
		return 1 + _Size(root->_left) + _Size(root->_right);
	}

	size_t _Depth(Node *root)
	{
		Node *cur = root;
		if (NULL == cur)
			return 0;

		return 1 + (_Depth(cur->_left) > _Depth(cur->_right) 
			   ? _Depth(cur->_left) : _Depth(cur->_right));
	}

	void _destory(Node *root)
	{
		Node *cur =root;
		if (cur)
		{
			_destory(cur->_left);
			_destory(cur->_right);
			delete cur;
			cur = NULL;
		}
	}

	Node* _Copy(Node* node)
	{
		Node* cur= node;
		Node* root = NULL;
		if (cur)
		{
			root = new Node(cur->_data);
			root->_left =_Copy(cur->_left);
			root->_right=_Copy(cur->_right);
		}
		return root;
	}

	size_t _leaf(Node* root)
	{
		Node* cur = root;
		if (NULL==cur)
			return 0;
		if (cur->_left == NULL&&cur->_right == NULL)      //如果左右子树都为空,则返回1
			return 1;
		return _leaf(cur->_left ) + _leaf(cur->_right);
	}
protected:
	Node *_root;
};


测试:
#include<iostream>
#include"BinaryTree.h"
using namespace std;

void test()
{
	int array[] = {1,2,3,'#','#',4,'#','#',5,6,'#','#',7};
	size_t sz = sizeof(array) / sizeof(array[0]);
	BinaryTree<int> t(array,sz,'#');

	BinaryTree<int> t2;
	t2 = t;
	t2.InOder();
	cout << t2.Size() << endl;
	cout << t2.Depth() << endl;
	cout<<t2.Leaf() << endl;
}

int main()
{
	test();
	system("pause");
	return 0;
}





  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值