【搜索树】二叉搜索树

二叉搜索树的实现:

BinarySearch.h

#pragma once
#include <iostream>
using namespace std;

template <class K, class V>
struct SearchBinaryTreeNode
{
	K _key; // 关键字(唯一)
	V _value;
	SearchBinaryTreeNode<K, V>* _left;
	SearchBinaryTreeNode<K, V>* _right;

	SearchBinaryTreeNode(const K& key)
		:_key(key)
		 ,_value(V())
		 ,_left(NULL)
		 ,_right(NULL)
	{}
};

template <class K, class V>
class SearchBinaryTree
{
	typedef SearchBinaryTreeNode<K, V> Node;
public:
	SearchBinaryTree()
		:_root(NULL)
	{}
	
	SearchBinaryTree(const SearchBinaryTree<K,V>& sTree)
	{
		_root = _CopyTree(sTree._root);
	}

	bool Insert(const K& key)
	{
		Node* cur = _root;
		Node* parent = NULL;
		if(_root == NULL)
		{
			_root = new Node(key);
			return true;
		}

		while(cur)
		{
			if(cur->_key == key)
			{
				return false;
			}
			else if(cur->_key < key)
			{
				parent = cur;
				cur = cur->_right;
			}
			else
			{
				parent = cur;
				cur = cur->_left;
			}
		}

		if(parent->_key > key)
			parent->_left = new Node(key);
		else
			parent->_right = new Node(key);

		return true;
	}

	void InOrder()
	{
		_InOrder(_root);
		cout << endl;
	}

    //key不支持修改
	bool Find(const K& key)
	{
		Node* cur = _root;
		while(cur)
		{
			if(cur->_key == key)
				return true;
			else if(cur->_key < key)
				cur = cur->_right;
			else
				cur = cur->_left;
		}
		return false;
	}

	bool Remove(const K& key)
	{
		Node* parent = NULL;
		Node* cur = _root;
		while(cur)
		{
			if(cur->_key < key)
			{
				parent = cur;
				cur = cur->_right;
			}
			else if(cur->_key > key)
			{
				parent = cur;
				cur = cur->_left;
			}
			else
			{
				//删除cur
				Node* del  = cur;
				if(cur->_left == NULL)
				{
					if(cur == _root) //删除的结点为根结点,且左为空(如果不判断,parent为NULL,会出错)
						_root = cur->_right;
					else
					{
						if(parent->_key > key)
							parent->_left = cur->_right;
						else
							parent->_right = cur->_right;
					}
				}	
				else if(cur->_right == NULL)
				{
					if(cur == _root)
						_root = cur->_left;
					else
					{
						if(parent->_key > key)
							parent->_left = cur->_left;
						else
							parent->_right = cur->_right;
					}
				}
				else
				{
					//思路:找右树的最左结点或左树的最右结点,与cur交换,然后删除最右或最左结点
					parent = cur;
					Node* minR = cur->_right; //右树的最左节点
					while(minR->_left != NULL)
					{
						parent = minR;
						minR = minR->_left;
					}
					cur->_key = minR->_key;

					if(parent->_left == minR)
						parent->_left = minR->_right;
					else
						parent->_right = minR->_right;

					del = minR;
				}
				delete del;
				return true;
			}
		}
		return false;
	}

	bool FindR(const K& key)
	{
		return _FindR(_root, key);
	}

	bool InsertR(const K& key)
	{
		return _InsertR(_root, key);
	}

	bool RemoveR(const K& key)
	{
		return _RemoveR(_root, key);
	}

	~SearchBinaryTree()
	{
		_DestoryTree(_root);
		_root = NULL;
	}
protected:
	void _DestoryTree(Node* root)
	{
		if(root == NULL)
			return;
		_DestoryTree(root->_left);
		_DestoryTree(root->_right);
		delete root;
	}

	void _InOrder(Node* root)
	{
		if(root == NULL)
			return;
		_InOrder(root->_left);
		cout << root->_key << " ";
		_InOrder(root->_right);
	}

	Node* _CopyTree(Node* root)
	{
		if(root == NULL)
			return NULL;

		Node* r = new Node(root->_key);
		r->_left = _CopyTree(root->_left);
		r->_right = _CopyTree(root->_right);
		return r;
	}

	bool _FindR(Node* root,const K& key)
	{
		if(root == NULL)
			return false;
		if(key == root->_key)
			return true;
		else if(key < root->_key)
		{
			return _FindR(key->_left, key);
		}
		else
		{
			return _FindR(key->_right, key);
		}
	}
	bool _InsertR(Node*& root, const K& key) //注意:巧用引用使节点连接起来
	{
		if(root == NULL)
		{
			root = new Node(key);
			return true;
		}

		if(root->_key == key)
			return false;
		else if(root->_key > key)
			return _InsertR(root->_left, key);
		else
			return _InsertR(root->_right, key);
	}
	
	bool _RemoveR(Node*& root, const K& key)
	{
		if(root == NULL)
			return false;

		if(root->_key > key)
			return _RemoveR(root->_left, key);
		else if(root->_key < key)
			return _RemoveR(root->_right, key);
		else
		{
			//删除
			Node* del = root;
			if(root->_left == NULL) //删除左为空结点
				root = root->_right;
			else if(root->_right == NULL)//删除右为空结点
				root = root->_left;
			else
			{
				Node* parent = root;
				Node* minR = root->_right;
				while(minR->_left != NULL)
				{
					parent = minR;
					minR = minR->_left;
				}
				root->_key = minR->_key;

				if(parent->_left == minR)
					parent->_left = minR->_right;
				else
					parent->_right = minR->_right;

				del = minR;
			}
			delete del;
			del = NULL;
			return true;
		}
	}
protected:
	Node* _root;
};



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值