我对以下代码有问题。我需要先搜索记录然后删除它:
它总是删除最后一条记录。即使我想删除中间的第一个任何 rcord
string NameForSearch1;
cout<<"Enter Your Friend's Name: "<<endl;
cin>>NameForSearch1;
tempRec->namePerson=NameForSearch1;
if (tempRec==firstRec){//delete the head
tempRec->next=firstRec;
firstRec=tempRec->next;
delete tempRec;
DisplayRec();
}
else if (tempRec->next==NULL ){//delete the last record
tempRec2=firstRec->next;
while(tempRec2->next!=tempRec){
tempRec2 = tempRec2->next;
}
tempRec2->next=NULL;
delete tempRec;
}
else {
//delete anyrecord
tempRec2=firstRec->next;
while(tempRec2->next!=tempRec){
tempRec2 = tempRec2->next;
}
tempRec2->next=tempRec->next;
delete tempRec;
}