When I use "make_heap" method of stl vector container, does it change the physical addresses of the elements or it just changes the order logically (through some class member)
Let me explain more:
Suppose I implement Heap using the following structure
struct heap
{
int cost;
struct heap* leftChild;
struct heap* rightChild;
};
I can make sure that only the pointers inside the structure change. but not the physical addresses. Is this the way vector's make_heap does it?
The reason I am asking this question is that I have another object that points to the elements of heap. I want to make sure that I need not update this pointer even if the heap changes.