: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.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;……