I want to access class InternalNode's getSurplus() method.
I have getSurplus() defined in a "InternalNode.h" file.
"..." means other code.
How do I refer to the method getSurplus from the InternalNode class?
//InternalNode.h
{
class InternalNode:public BTreeNode
{
...
void remove(int a);
int getSurplus() const;
...
}
}
int InternalNode::getSurplus() const
{
return (count - (internalSize + 1) / 2);
}
//
BTreeNode* InternalNode::remove(int value)
{
...
if (children[i]->getSurplus() >= 0) return SURPLUS; //Not correct syntax
...
}
children? – Clark Gaebel Feb 16 at 4:31BtreeNode*types – Jason Feb 16 at 4:40