This is a standalone function.... can easily be converted to member function


bool IsStrictlyBinary(Node* root) {

if(root->left == NULL && root->right == NULL)
return true;
else if...