下你所需,载你所想!
汇集开发技术源码资料

c++ 红黑树代码

:545.473KB :1 :2022-08-31 19:50:50

部分简介

c++红黑树代码如果开发者对于本文件有需要的可以参考。
# include
# include"RedBlackTree.h"
using namespace std;

int main()
{
const int NEG_INF = -9999999;
RedBlackTree t(NEG_INF);
t.insert(50);
t.insert(40);
t.insert(30);
cout << t.header->right->element << endl;
if (!t.isEmpty()) cout << "红黑树不是空的" << endl;
t.makeEmpty();
if (t.isEmpty()) cout << "红黑树是空的" << endl;……

热门推荐

相关文章