Why compiler(g++) cannot find the first add function? C++ March 6, 2021 template void add(SBTNode*& t, const SBTNode* x) { if (t==SBTNode::getPNIL()) { t = x; return;} if (x-…