模拟实现map/set[改编红黑树实现map/set容器底层]


在这里插入图片描述

1.搭建框架

1.1map

在这里插入图片描述

1.2set

在这里插入图片描述

1.3RBTree

在这里插入图片描述

在这里插入图片描述

1.4图解

在这里插入图片描述

2.代码剖析

2.1RBTree.h

#pragma once
#define _CRT_SECURE_NO_WARNINGS 
#include <iostream>
#include <list>
#include <vector>
#include <algorithm>
#include <array>
#include <time.h>
#include <queue>
#include <stack>
#include <string>
#include <set>
#include <map>
#include <functional>
#include <assert.h>
using namespace std;

//颜色枚举
enum Colour
{
	RED,
	BLACK,
};

//结点类
template<class T>
struct RBTreeNode
{
	RBTreeNode<T>* _left;
	RBTreeNode<T>* _right;
	RBTreeNode<T>* _parent;
	T _data;
	Colour _col;

	RBTreeNode(const T& data)
		: _left(nullptr)
		, _right(nullptr)
		, _parent(nullptr)
		, _data(data)
		, _col(RED)
	{
	
	}
};

//迭代器类
template<class T, class Ref, class Ptr>
struct RBTreeIterator
{
	typedef RBTreeNode<T> Node;

	typedef RBTreeIterator<T, Ref, Ptr> Self;

	Node* _node;

	//结点构造函数
	RBTreeIterator(Node* node)
		:_node(node)
	{
	
	}
	
	RBTreeIterator(const RBTreeIterator<T, T&, T*>& it)
		:_node(it._node)
	{
	
	}

	//重载解引用运算符
	Ref operator*()
	{
		return _node->_data;
	}

	//重载成员访问运算符
	Ptr operator->()
	{
		return &_node->_data;
	}

	//关系运算符
	bool operator!=(const Self& s)
	{
		return _node != s._node;
	}

	//自增
	//一棵树 最小的[begin]在左下角 最大的在右下角 
	//[end指向最大的后一个即null ]
	//自增自减运算符遍历从小到大 
	Self& operator++()
	{
		//_node指向当前结点

		//右不空
		if (_node->_right)
		{
			//next为右子树最左节点

			//右子树根节点
			Node* subLeft = _node->_right;
			while (subLeft->_left)
			{
				subLeft = subLeft->_left;
			}
			//更改指向 ++成功
			_node = subLeft;
		}
		//右空:遍历时 一个结点右空 当前结点所在子树遍历结束
		else
		{
			//向上回溯--next特征:右为空的结点所在子树的上一代
			Node* cp = _node;
			Node* dad = cp->_parent;
			//如果cp是父右 向上回溯
			//不是父右 定是父左 循环结束
			
			//特殊:当遍历到最后一个结点[右下角]  一直回溯直到dad指向根时
			//此时再回溯一次 dad为空 循环结束 _node指向空
			while (dad && cp == dad->_right)
			{
				cp = dad;
				dad = dad->_parent;
			}
			//更改指向 ++成功
			_node = dad;
		}

		return *this;
	}

	//自减
	//++从小到大 --从大到小 ++找次小 --找次大
	Self& operator--()
	{
		//假定_node指向最后一个结点[右一定为空]
		if (_node->_left)
		{
			//左不空 次大为左子树最右节点
			Node* subRight = _node->_left;
			while (subRight->_right)
			{
				subRight = subRight->_right;
			}
			//更改指向 ++成功
			_node = subRight;
		}
		else
		{
			//左为空 遍历时 一个结点左空 当前结点所在子树遍历结束

			//向上回溯--prev特征:左为空的结点所在子树的上一代
			Node* cp = _node;
			Node* dad = cp->_parent;

			//如果cp是父左 向上回溯
			//不是父右 定是父左 循环结束

			//特殊:当遍历到最后一个结点[左下角]  一直回溯直到dad指向根时
			//此时再回溯一次 dad为空 循环结束 _node指向空
			while (dad && cp == dad->_left)
			{
				cp = dad;
				dad = dad->_parent;
			}
			//更改指向 ++成功
			_node = dad;
		}

		return *this;
	}

	//RBTreeIterator<T, Ref, Ptr>& operator++() { return *this };
	//RBTreeIterator<T, Ref, Ptr>& :自增自减的返回值[迭代器]

};

//红黑树类
template<class K, class T, class GetKey>
class RBTree
{
	typedef RBTreeNode<T> Node;
public:

	//析构函数
	~RBTree()
	{
		_Destroy(_root);
		_root = nullptr;
	}

public:
	typedef RBTreeIterator<T, T&, T*> itertaor;
	typedef RBTreeIterator<T, const T&, const T*> const_itertaor;

///  迭代器  
	//begin迭代器[左路最后一个结点]
	itertaor begin()
	{
		Node* cp = _root;
		//防止传入空树
		while (cp && cp->_left)
		{
			cp = cp->_left;
		}

		return itertaor(cp);
	}

	//end迭代器[最后一个数据的下一个位置]
	itertaor end()
	{
		return itertaor(nullptr);
	}

	//const_begin迭代器
	const_itertaor begin() const
	{
		Node* cp = _root;
		while (cp && cp->_left)
		{
			cp = cp->_left;
		}

		return const_itertaor(cp);
	}

	//const_end迭代器
	const_itertaor end() const
	{
		return const_itertaor(nullptr);
	}

	//查找函数
	Node* Find(const K& key)
	{
		Node* cp = _root;
		GetKey get;
		while (cp)
		{
			if (get(cp->_data) < key)
			{
				cp = cp->_right;
			}
			else if (get(cp->_data) > key)
			{
				cp = cp->_left;
			}
			else
			{
				return cp;
			}
		}

		return nullptr;
	}

	//插入函数
	pair<itertaor, bool> Insert(const T& data)
	{
		//根节点为空
		if (_root == nullptr)
		{
			_root = new Node(data);
			_root->_col = BLACK;   //根节点颜色为黑

			return make_pair(itertaor(_root), true);
		}

		//不为空 定位至合适位置
		GetKey get;
		Node* dad = nullptr;
		Node* cp = _root;
		while (cp)
		{
			if (get(cp->_data) < get(data))
			{
				dad = cp;
				cp = cp->_right;
			}
			else if (get(cp->_data) > get(data))
			{
				dad = cp;
				cp = cp->_left;
			}
			else
			{
				return make_pair(itertaor(cp), false);
			}
		}

		cp = new Node(data);
		Node* tmp = cp;
		if (get(dad->_data) > get(data))
		{
			dad->_left = cp;
		}
		else
		{
			dad->_right = cp;
		}
		cp->_parent = dad;

		//cp父不空 && cp[红]  此时定位新插入位置 若父为红
		while (dad && dad->_col == RED)
		{
			//dad && dad->_col == RED
		    //二次循环来到此处 
		    // 1.父为空 则cur为根 [最后控制cur变黑] 循环结束
		    // 2.父为黑 无需操作

			//若父为红 祖父定存在且为黑
			Node* grandpa = dad->_parent;
			assert(grandpa);
			assert(grandpa->_col == BLACK);

			//父为左子树 uncle为右子树
			if (grandpa->_left == dad)
			{
				Node* uncle = grandpa->_right;
				//情况一、uncle存在为红 变色+回溯
			    //dad-uncle变黑 grandpa变红
				if (uncle && uncle->_col == RED)
				{
					//变色
					dad->_col = BLACK;
					uncle->_col = BLACK;
					grandpa->_col = RED;

					//回溯
					cp = grandpa;
					dad = cp->_parent;
				}
				//情况二-三:uncle不存在 存在且为黑
				else 
				{
					if (cp == dad->_left)
					{
						//情况二:右单旋+变色
						RotateR(grandpa);
						dad->_col = BLACK;
						grandpa->_col = RED;
					}
					else
					{
						//情况三:左右双旋+变色
						RotateL(dad);
						RotateR(grandpa);
						cp->_col = BLACK;
						grandpa->_col = RED;
					}

					break;
				}
			}
			//父为右子树 uncle为左子树
			else
			{
				Node* uncle = grandpa->_left;
				//情况一
				if (uncle && uncle->_col == RED)
				{
					//变色
					dad->_col = BLACK;
					uncle->_col = BLACK;
					grandpa->_col = RED;

					//回溯
					cp = grandpa;
					dad = cp->_parent;
				}
				//情况二 三
				else 
				{
					if (cp == dad->_right)
					{
						//情况二:左单旋+变色
						RotateL(grandpa);
						grandpa->_col = RED;
						dad->_col = BLACK;
					}
					else
					{
						//情况三:右左单旋+变色
						RotateR(dad);
						RotateL(grandpa);
						cp->_col = BLACK;
						grandpa->_col = RED;
					}

					break;
				}
			}
		}

		_root->_col = BLACK;

		return make_pair(itertaor(tmp), true);
	}

	//判断是否是红黑树
	bool IsRBTree()
	{
		if (_root && _root->_col == RED)
		{
			cout << "根节点颜色错误!" << endl;
			return false;
		}

		//事先计算出某一条路径黑色结点数量
		//后续每一条路径都应和certain相等 不想等报错
		int certain = 0;
		Node* cur = _root;
		while (cur)
		{
			if (cur->_col == BLACK)
				++certain;
			cur = cur->_left;
		}

		return PrevJudge(_root, 0, certain);
	}

	//高度接口
	int Height()
	{
		return _Height(_root);
	}

private:

	//后序遍历销毁红黑树
	void _Destroy(Node* root)
	{
		if (root == nullptr)
		{
			return;
		}

		_Destroy(root->_left);
		_Destroy(root->_right);
		delete root;
	}
	//高度接口
	int _Height(Node* root)
	{
		if (root == NULL)
			return 0;

		int leftH = _Height(root->_left);
		int rightH = _Height(root->_right);

		return leftH > rightH ? leftH + 1 : rightH + 1;
	}
	//前序遍历判断
	bool PrevJudge(Node* root, int BNcount, int& certain)
	{
		//某一条路径结束
		if (root == nullptr)
		{
			if (BNcount != certain)
			{
				cout << "性质4违例: 存在某一路径黑色节点的数量不等!" << endl;
				return false;
			}

			return true;
		}
		//遇黑--值++
		if (root->_col == BLACK)
		{
			++BNcount;
		}
		//遇红--连坐判断
		if (root->_col == RED
			&& root->_parent
			&& root->_parent->_col == RED)
		{
			cout << "性质3违例: 存在连续红节点!" << endl;
			return false;
		}

		return PrevJudge(root->_left, BNcount, certain)
			&& PrevJudge(root->_right, BNcount, certain);
	}
	//左旋
	void RotateL(Node* dad)
	{
		Node* subR = dad->_right;
		Node* subRL = subR->_left;

		dad->_right = subRL;
		if (subRL)
			subRL->_parent = dad;

		Node* grandpa = dad->_parent;

		subR->_left = dad;
		dad->_parent = subR;

		if (grandpa == nullptr)
		{
			_root = subR;
			_root->_parent = nullptr;
		}
		else
		{
			if (grandpa->_left == dad)
			{
				grandpa->_left = subR;
			}
			else
			{
				grandpa->_right = subR;
			}

			subR->_parent = grandpa;
		}
	}
	//右旋
	void RotateR(Node* dad)
	{
		Node* subL = dad->_left;
		Node* subLR = subL->_right;

		dad->_left = subLR;
		if (subLR)
			subLR->_parent = dad;

		Node* grandpa = dad->_parent;

		subL->_right = dad;
		dad->_parent = subL;

		if (dad == _root)
		{
			_root = subL;
			_root->_parent = nullptr;
		}
		else
		{
			if (grandpa->_left == dad)
			{
				grandpa->_left = subL;
			}
			else
			{
				grandpa->_right = subL;
			}
			subL->_parent = grandpa;
		}
	}

private:
	Node* _root = nullptr;
};

2.2Map.h

#pragma once
#include "RBTree.h"

namespace ape
{	
	//map类
	template<class K, class V>
	class map
	{
		//仿函数operator() 获得key
		struct GetKeyMap
		{
			const K& operator()(const pair<const K, V>& pair)
			{
				return pair.first;
			}
		};
    public:
		typedef typename RBTree<K, pair<const K, V>, GetKeyMap>::itertaor iterator;
		typedef typename RBTree<K, pair<const K, V>, GetKeyMap>::const_itertaor const_iterator;

		//begin迭代器
		iterator begin()
		{
			return _t.begin();
		}

		//end迭代器
		iterator end()
		{
			return _t.end();
		}

		//重载下标运算符[]
		V& operator[](const K& key)
		{
			pair<iterator, bool> pair = _t.Insert(make_pair(key, V()));
			return pair.first->second;
		}

		//插入函数
		pair<iterator, bool> insert(const pair<const K, V>& pair)
		{
			return _t.Insert(pair);
		}
    private:
		RBTree<K, pair<const K, V>, GetKeyMap> _t;
	};

/// 测试 

	void test_map1()
	{
		//插入
		map<string, string> m;
		string a = "Eddie", b = "彭于晏";
		m.insert(make_pair(a,b));
		m.insert(make_pair("Tom", "汤姆"));
		m.insert(make_pair("Jerry", "杰瑞"));
		//迭代器遍历
		map<string, string>::iterator it = m.begin();
		while (it != m.end())
		{
			cout << it->first << ":" << it->second << endl;
			/*
			it->first = "Ape";
			it->second = "阿猿";
			*/
			++it;
		}
		cout << endl;
		//for循环遍历
		for (auto& e : m)
		{
			cout << e.first << ":" << e.second << endl;
		}
		cout << endl;
	}

	void test_map2()
	{
		string s[] = { "陀螺", "陀螺", "洋娃娃", "陀螺", "洋娃娃", "洋娃娃", "陀螺",
				       "洋娃娃", "悠悠球", "洋娃娃", "悠悠球", "乐高" };
		//记录次数
		map<string, int> m;
		for (auto& e : s)
		{
			m[e]++;
		}

		//for循环遍历
		for (auto& e : m)
		{
			cout << e.first << ":" << e.second << endl;
		}
	}
}

2.3Set.h

#pragma once
#include "RBTree.h"
namespace ape
{
	//set类
	template<class K>
	class set
	{
		//仿函数operator() 获得key
		struct GetKeySet
		{
			const K& operator()(const K& key)
			{
				return key;
			}
		};
	public:
		
/// ///  迭代器  /
		
		typedef typename RBTree<K, K, GetKeySet>::const_itertaor iterator;
		typedef typename RBTree<K, K, GetKeySet>::const_itertaor const_iterator;

		//begin迭代器
		iterator begin()
		{
			return _t.begin();
		}
		//end迭代器
		iterator end()
		{
			return _t.end();
		}
        //插入
		pair<iterator, bool> insert(const K& key)
		{
			return _t.Insert(key);
		}

    private:
		RBTree<K, K, GetKeySet> _t;
	};

/// 测试 

	void test_set()
	{
		//插入
		int a[] = { 16, 3, 7, 11, 9, 26, 18, 14, 15 };
		set<int> s;
		for (auto e : a)
		{
			s.insert(e);
		}
		//迭代器遍历
		set<int>::iterator it = s.begin();
		while (it != s.end())
		{
			cout << *it << " ";
			++it;
		}
		cout << endl;
		//for循环遍历
		for (auto e : s)
		{
			cout << e << " ";
		}
		cout << endl;
	}
}

2.4Test.cpp

#define _CRT_SECURE_NO_WARNINGS 
#include <iostream>
#include <list>
#include <vector>
#include <algorithm>
#include <array>
#include <time.h>
#include <queue>
#include <stack>
#include <string>
#include <set>
#include <map>
#include <functional>
using namespace std;

#include "AVLTree.h"
#include "RBTree.h"
#include "Map.h"
#include "Set.h"

int main()
{
	ape::test_set();
	//ape::test_map2();
	return 0;
}


2.5迭代器深层解读

在这里插入图片描述

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

阿猿收手吧!

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值