vote up 2 vote down star
1

I am tring to intialize an array of pointers to a NODE struct that I made

struct Node{
    int data;
    Node* next;
};

the private member of my other class is declared as

Node** buckets;

It is currently initialised as buckets = new Node*[SIZE]

Is there anyway to initialize the array so that its members point to NULL or some other predefined Node pointer?

EDIT: Im looking for a means to initilize it without trying to generate a for loop to traverse through the full lenght of the array. The size of the array is determined at runtime.

EDIT 2: I tried std::fill_n(buckets, SIZE_OF_BUCKET, NULL); but the compiler gives the error "cannot convert from 'const int' to 'Node *'" I am using visual studio 2008. Is there something wrong that I am doing?

flag

76% accept rate

2 Answers

vote up 6 vote down check

First of all, the simplest solution is to do the following:

Node** buckets = new Node*[SIZE]();

As litb previously stated, this will value initialize SIZE pointers to null pointers.

However, if you want to do something like Node **buckets and initialize all of the pointers to a particular value, then I recommend std::fill_n from <algorithm>

Node **buckets = new Node*[SIZE];
std::fill_n(buckets, SIZE, p);

this will set each Node*' to p after allocation.

In addition, if you want the Node to have sane member valuesupon construction, the proper way is to have a constructor. Something like this:

struct Node {
    Node() : data(0), next(NULL){}
    Node(int d, Node *n = NULL) : data(d), next(n) {}

    int data;
    Node* next;
};

That way you can do this:

Node *p = new Node();

and it will be properly initialized with 0 and NULL, or

Node *p = new Node(10, other_node);

Finally, doing this:

Node *buckets = new Node[N]();

will construct N Node objects and default construct them.

link|flag
Alright i deleted my answer now that you have this thing integrated and because your answer is older. Why not move that line to the very top so people read it first? – Johannes Schaub - litb Aug 27 at 4:22
Good call, done. – Evan Teran Aug 27 at 4:24
I tried std::fill_n(buckets, SIZE_OF_BUCKET, NULL); but the compiler gives the error "cannot convert from 'const int' to 'Node *'" I am using visual studio 2008 – Jaelebi Aug 27 at 5:18
If you pass NULL to fill_n, you'll need to type-cast it since the compiler will deduce the type to be int rather than pointer: fill_n(buckets, SIZE, static_cast<Node*>(NULL)). You could also specify the template parameters explicitly, but that gets ugly since the parameter you want is the third, so you need to include the first two as well, even though the compiler can deduce them without your hints: fill_n<Node**, int, Node*>(buckets, SIZE, NULL). – Rob Kennedy Aug 27 at 5:58
That works. But I still get a warning "warning C4996: 'std::fill_n': Function call with parameters that may be unsafe " – Jaelebi Aug 27 at 6:01
show 1 more comment
vote up 1 vote down

If you mean by array your array-of-pointers buckets, then yes. Just set buckets = NULL.

Edit: based on your question edit, just use memset.

memset(buckets, 0, NUM_ELEMENTS_IN_BUCKETS*sizeof(Node*));
link|flag
sizeof(anypointer) does not always equal 4, these days – 1800 INFORMATION Aug 27 at 3:52
3  
technically, using memset to set a pointer to 0 is not the same as setting it to NULL. The standard says that the 0 constant used in a pointer context is the null constant. However, this is setting the actual bit-pattern of the pointer to 0, which is not neccessarily the null constant. – Evan Teran Aug 27 at 3:56
I removed the incorrect side not that sizeof(any pointer) would be always 4. – peterchen Aug 27 at 4:02
@Evan I believe in C++ that the null pointer is always 0... no? @others yes oops... I still live in a 32-bit world ;) – Shaggy Frog Aug 27 at 4:05
@Shaggy, the constant 0 is the null constant, but that is not the same as a 0 bit-pattern. There are several architectures which have a non 0 bit-pattern for NULL. (However, the null constant is still 0 in C++ regardless of this fact). – Evan Teran Aug 27 at 4:07
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.