- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
#include<iostream>
using namespace std;
enum Color { black, red };
struct node {
public:
int key;
Color color;
node *left, *right, *parent;
};
class RBT {
public:
node nil;
node *root = new node;
RBT() {
nil.color = black;
root = &nil;
}
void left_rotate(node *x) {
node *y = x->right;
if (y->left == &nil) {}
}
};
int main()
{
RBT t;
cout << "t color is: " << t.root->color;
}
基本上我正在尝试编写一个红黑树数据结构,但我仍然对指向类对象中的指针感到非常困惑。
rotate函数是要在以后的函数中用到的,现在还不能真正用到。但是,当我已有的代码无法正常工作时,继续编写更多代码是没有意义的。
另一个重要的一点:没有其他节点指向的所有节点都将指向树的“nil”成员。所以这就是我要在函数中测试的内容,但我认为它做得不对。
最佳答案
enum class Color { black, red };
struct node {
static node nil; // so nil can be used in the constructor of node
int key;
Color color;
node *parent;
node *left;
node *right;
// Use this constructor for new nodes. Parameters you don't provide
// have defaults.
node(int key = 0, Color color = Color::black,
node *parent = &nil, node *left = &nil, node *right = &nil)
: key{ key }, color{ color }, parent{ parent }, left{ left }, right{ right }
{}
};
node node::nil;
struct RBT {
node root; // please, no new without purpose
void left_rotate(node *x) {
node *y = x->right;
if (y->left == &node::nil) {
// whatever
}
}
};
您可能想查找 std::unique_ptr<>
和 std::shared_ptr<>
此外,
cout << "t color is: " << t.root->color;
如果不写 operator<<
就无法工作这需要 std::ostream&
和一个 Color
:
std::ostream& operator<<(std::ostream &os, Color const &color)
{
if(color == Color::black)
return os << "black";
return os << "red";
}
关于C++ - 试图创建一个指向节点内指针(由另一个节点指向)的指针,对吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53512288/
我是 C++ 的新手,我在使用这段代码时遇到了问题: string output_date(int day, int month, int year){ string date; if
所以我这样做了 tar cvzf test.zip FP 为了创建目录 FP 的 zip 但是,它会列出 zip 中的目录 FP/ FP/php/ FP/php/pdf/ FP/php/docs/ F
我正在尝试在 Swift、Xcode 7.3(所以是 Swift 2.2)中创建一个通用类,但我似乎无法让它通过编译器: protocol Struct1Protocol { } struct Str
我的测试用例是这样的: class FooTest extends PHPUnit_Framework_TestCase { /** @covers MyClass::bar */ f
我正在尝试将brew install wine作为使electron-builder工作的一步。但是我所能得到的只是以下响应: ==> Installing dependencies for wine
我这样做: string[,] string1 = {{"one", "0"},{"Two", "5"},{"Three","1"}}; int b = 0; for(int i = 0; i <=
我正在尝试使用 SetWindowsHookEx 键盘 Hook Notepad.exe。 如您所见,工作线程正在将其 ASCII 代码(即 wParam)发送到指定的服务器。 UINT WINAPI
我正在尝试将 ListView 实现到我的 Fragment 中,但无论我尝试什么,我都会得到一个 NullPointerException。我检查对象是否为 null 并记录是否为 null,看起来
我尝试在一行中对齐两个 div。使用 float left 属性,一切顺利。但是当我在 div 中使用图像时,它开始产生问题。 所以这是我的示例代码:- Some headi
我目前正在使用此代码来获取图像的灰度图像表示并以 (512, 370, 1) 的格式表示它大批。 img_instance = cv2.imread(df.iloc[i][x_col]) / 255.
总结 我正在创建一个简单的应用程序,它允许用户选择一个包含顶级窗口的进程。用户首先键入 native DLL(而非托管 DLL)的路径。然后用户键入将在 Hook 过程中调用的方法的名称。该方法不得返
我是一名优秀的程序员,十分优秀!