I'm implementing a binary heap class. The heap is implemented as an array that is dynamically allocated. The heap class has members capacity, size and a pointer to an array, as:
class Heap
{
private:
Heap* H;
int capacity; //Size of the array.
int size; //Number of elements currently in the array
ElementType* Elements; //Pointer to the array of size (capacity+1)
//I've omitted the rest of the class.
};
My construcor looks like this:
Heap::Heap (int maxElements)
{
H = ( Heap* ) malloc ( sizeof ( Heap ) );
H -> Elements = ( ElementType* ) malloc ( ( maxElements+1 )*sizeof ( ElementType ) );
H -> Elements[0] = DUMMY_VALUE; //Dummy value
H -> capacity = maxElements;
H -> size = 0;
}
Since I'm mallocing twice and dereferencing both pointers in the constructor, I should check whether it succeeds. But what should I do if it fails? The constructor can't itself return anything to indicate that it failed. Is it good programming practice to avoid mallocs in constructors altogether?
{}). Also, I don't think you need yourHmember variable at all. The space for theHeapobject has already been allocated by the time your constructor is entered. You just need to allocate space for theElementsarray. – Robᵩ Jun 10 '11 at 19:36mallocand use the members of your object directly. – Mark Ransom Jun 10 '11 at 19:39Hpoint to the memory where the constructor didn't run. I can bet that dereferencingHinvokes undefined behaviour. Why not just storecapacity,sizeandElementsdirectly in your class? – Vlad Jun 10 '11 at 19:41mallocin C++ code, not just constructors. Search for RAII andoperator new, and then research smart pointers, for preferred C++ approaches to memory management. – Steve Townsend Jun 10 '11 at 19:49