#include "PersonList.h"
#include <iostream>
#include <string>
using namespace std;
PersonList::PersonList()
{
head=NULL; //Head is a PersonRec*
}
struct PersonRec
{
string aName;
int aBribe;
PersonRec* link;
};
void PersonList::AddToList()
{
//string a;
//int b;
PersonRec* p;
p=new PersonRec;
p->link=NULL;
cout << "\nEnter the person's name: ";
cin >> p->aName;
cout<< "\nEnter the person's contribution: ";
cin >> p->aBribe;
if(head==NULL)
{
cout<<1<<endl;
head=p;
}
else if(head!=NULL) //The problem is in here.
{
PersonRec *currPtr=head;
bool x=true;
while(x==true)
{
currPtr=currPtr->link;
if(currPtr==NULL)
{
currPtr=p;
x=false;
}
}
}
}
这是一个程序,应该通过动态内存分配将姓名和贿赂输入到链表中,并根据请求输出结果(我只将输入函数放在这里,因为它是唯一有问题的函数)。第一个元素输入和输出正常,但如果我尝试输入第二个元素,则不会输出。程序可以编译,但是由于在第一个节点之后添加节点的所有节点都不同,所以问题一定出在我评论为问题的部分。任何帮助,将不胜感激。这是家庭作业,是的,所以任何提示将不胜感激。