红黑树c++实现

一、红黑树的基本概念

性质:

1、根结点的颜色是黑色

2、红结点的两个孩子都为黑色

3、根结点的父结点,所有叶子结点都为黑色(在程序中用NIL替换)

4、每个结点到其所有后代叶结点的简单路径上,均包含相同数目的黑色结点

 

黑高:从某个结点出发(不含该结点)到达一个叶结点的任意一条简单路径上的黑色结点个数称为该结点的黑高

 

二、c++源代码

#include <iostream>
using namespace std;

#define BK 0 //黑色
#define RD 1 //红色

typedef struct __RBTree
{
	int key;
	int color;
	__RBTree* left;
	__RBTree* right;
	__RBTree* parent;
}RBTree, *pRBTree;

//创建一个结点
pRBTree Build(int key);

//插入一个结点
void Insert(pRBTree& root, pRBTree z);

//插入修正、让其成为一个合法的红黑树
void InsertFixup(pRBTree& root, pRBTree z);

//打印
void Print(pRBTree root);

//左旋转
void LeftRotate(pRBTree& root, pRBTree x);

//右旋转
void RightRotate(pRBTree& root, pRBTree x);

//根结点的父结点,叶子结点的公共子结点
extern pRBTree NIL;

int main()
{
	NIL->color = BK;
	NIL->parent = NIL->left = NIL->right = NULL;

	int array[8] = {11, 2, 1, 7, 5, 8, 14, 15};
	pRBTree root = NIL;
	for (int i = 0; i < 8; ++ i)
		Insert(root, Build(array[i]));

	Print(root);
	return 0;
}

pRBTree NIL = new RBTree;
pRBTree Build(int key)
{
	pRBTree pTmp = new RBTree;
	pTmp->key = key;
	pTmp->parent = NIL;
	pTmp->left = NIL;
	pTmp->right = NIL;
	pTmp->color = RD;
	return pTmp;
}

void Insert(pRBTree& root, pRBTree z)
{	
	pRBTree pFind = root;
	pRBTree pPos = NIL;
	while (pFind != NIL)
	{
		pPos = pFind;
		if (z->key > pFind->key)
			pFind = pFind->right;
		else
			pFind = pFind->left;
	}
	z->parent = pPos;
	if (pPos == NIL)
		root = z;
	else if (pPos->key > z->key)
		pPos->left = z;
	else
		pPos->right = z;
	InsertFixup(root, z);
}

void Print(pRBTree root)
{
	if (root != NIL)
	{
		cout << root->key << " " << root->color << endl;
		Print(root->left);
		Print(root->right);
	}
}

void LeftRotate(pRBTree& root, pRBTree x)
{
	pRBTree y = x->right;
	x->right = y->left;
	
	if (y->left != NIL)
		y->left->parent = x;
	
	y->left = x;
	y->parent = x->parent;
	
	if (x->parent == NIL)
		root = y;
	else if (x->parent->left == x)
		x->parent->left = y;
	else
		x->parent->right = y;
	x->parent = y;
}

void RightRotate(pRBTree& root, pRBTree x)
{
	pRBTree y = x->left;
	x->left = y->right;
	
	if (y->right != NIL)
		y->right->parent = x;
	
	y->right = x;
	y->parent = x->parent;
	
	if (x->parent == NIL)
		root = y;
	else if (x->parent->left == x)
		x->parent->left = y;
	else
		x->parent->right = y;
	x->parent = y;

}

void InsertFixup(pRBTree& root, pRBTree z)
{
	while (z->parent->color == RD)
	{
		if (z->parent == z->parent->parent->left)
		{
			pRBTree y = z->parent->parent->right;
			if (y->color == RD)
			{
				z->parent->color = BK;
				y->color = BK;
				z->parent->parent->color = RD;
				z = z->parent->parent;
			}
			else if (z == z->parent->right)
			{
				z = z->parent;
				LeftRotate(root, z);
			}
			else
			{
				z->parent->color = BK;
				z->parent->parent->color = RD;
				RightRotate(root, z->parent->parent);
			}
		}
		else
		{
			pRBTree y = z->parent->parent->left;
			if (y->color == RD)
			{
				z->parent->color = BK;
				y->color = BK;
				z->parent->parent->color = RD;
				z = z->parent->parent;
			}
			else if (z == z->parent->left)
			{
				z = z->parent;
				RightRotate(root, z);
			}
			else
			{
				z->parent->color = BK;
				z->parent->parent->color = RD;
				LeftRotate(root, z->parent->parent);
			}
		}
	}
	root->color = BK;
}


 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值