📅  最后修改于: 2022-03-11 14:44:56.999000             🧑  作者: Mango
template
using Node = typename BinarySearchTree::Node;
template
Node const* BinarySearchTree::find(const T& value) const
{
// some code here
return nullptr;
}