我有一个简单的 C++ Node 类,它包含指向同一类型的指针的数组数据成员。这个数组是动态分配的,它的指针应该默认为 null 但我不知道如何实现它。
class Node
{
private:
Node *_nextNode[];
string _data;
}
Node::Node( const string &p_data, const int &p_levels ): _data(p_data)
{
//unsure how to initialize the '_nextNode[]' member so that the size of the array is of p_levels and they all default to null pointers
}
class SkipList
{
private:
}