誰かがコーディングするとき、それはどういう意味ですか:
template <class T>
void binaryTree<T>::in_order(Node <T>* node, void (*fun)(T&))
{
if (node == NULL)
return; //<-- what does this mean here
inorder(node->left, fun); //<-- how does this continue here
f(node->data);
inorder(node->right,fun);
}
問題は、どのように返品するかです。何も返さずに。これは何をしますか?**注: わかりやすくするために、上記のコードを編集しました。