我的作业是从二叉树派生的二叉搜索树,在我的驱动程序中,这就是我创建BST对象的方式。但我有点困惑,因为我知道必须有一个构造函数,但在我的赋值中,它实际上没有在哪里为派生类调用构造函数。
int main() {
int x = 0;
int n = 0;
int len = 0;
int total = 0;
int seed = 0;
bool y;
cin >> n;
vector<int> v;
binSTree<int> t;
我很难使用这些“pre”和“code”标签,向量实际上是vector<;整数>;v
,并且该树实际上是binSTree<;整数>;t
当然,int周围有小于和大于的符号。
我的程序中的错误如下:
In file included from prog6.cc:2:
binSTree.h:1:9: error: macro names must be identifiers
prog6.cc: In function ‘int main()’:
prog6.cc:16: error: ‘binSTree’ was not declared in this scope