错误代码:
BTNode* MakeLinked(const Vector& L)void Level(const BTNode* t)
原因是类声明时使用了类模板(如,tempale class vector{…};,)使用类时没有给类模板参数 修改后:
tempale
BTNode* MakeLinked(const Vector& L) void Level(const BTNode* t)