我有这个插入方法,它应该将节点插入到包含人名和年龄的 BST 中。树本身按年龄排序,每个节点都包含一个该年龄的人的链接列表。
我对这棵树的插入方法没有正确地比较这些节点。输入像
insert 1 50 john
insert 1 30 elvis
insert 1 90 david
insert 1 50 james
insert 1 95 abel
insert 1 80 esther
insert 1 95 vivian
insert 1 95 barbara
insert 1 50 james
我应该只看到插入失败一次,因为 James 重复插入。相反,我的代码似乎创建了两个 50 岁的节点并且无法插入 vivian
Input Command: insert 1 50 john
Input Command: insert 1 30 elvis
Input Command: insert 1 90 david
Input Command: insert 1 50 james
Input Command: insert 1 95 abel
Input Command: insert 1 80 esther
Input Command: insert 1 95 vivian
--- Failed.
Input Command: insert 1 95 barbara
--- Failed.
Input Command: insert 1 50 james
我不确定为什么会这样。它甚至似乎也没有在正确的时间进行比较。
无论哪种方式都是我的代码
bool insert(const int &a, const string &n) {
BinaryNode* t = new BinaryNode;
BinaryNode* parent;
t->it = t->nameList.begin();
t->nameList.insert(t->it ,n);
t->age = a;
t->left = NULL;
t->right = NULL;
parent = NULL;
if(isEmpty()){
root = t;
return true;
}
else {
BinaryNode* curr;
curr = root;
while(curr) {
parent = curr;
if(t->age > curr->age)
curr = curr->right;
else
curr = curr->left;
}
if(t->age == parent->age) {
for(list<string>::iterator ti = parent->nameList.begin(); ti != parent->nameList.end(); ti++) {
string temp = *ti;
cout << temp << endl;
if(n.compare(temp))
return false;
else if(ti == parent->nameList.end())
parent->nameList.insert(ti,n);
}
return true;
}
if(t->age < parent->age) {
parent->left = t;
return true;
}
else {
parent->right = t;
return true;
}
}
}