我正在编写一个简单的(非常简单的)链接列表来提升我的编程技巧,但显然,我失败了,因为我遇到了这个编译器错误,我无法弄清楚是什么问题。问题在于删除功能:
bool delete(node* head, node* delMe){
node* current;
if(delMe == head){
if(head->next != NULL){
head = delMe->next;
free(delMe);
}else{
head = NULL;
cout<<"There are no more elements in the LL"<<endl;
}
return true;
}else{
current = head;
while(current){
if(current->next == delMe){
current->next = delMe->next;
free(delMe);
return true;
}
current = current->next;
}
}
return false;
}
我在“删除”之前得到了预期的nonqualified-id。
我认为它可能是上面有insert函数的东西,但是当我完全注释掉删除函数时,程序编译没有问题。
答案 0 :(得分:1)
delete
是C ++中的关键字。您不能将其用作标识符。