リンクされたリストからアイテムを出力する関数を書いています。正常に出力されていますが、最後に到達してnullまたは初期番号のないノードに到達すると、乱数が出力されます(コンピューターに保存されていると思います)。どうすればこれを修正できますか?
void printList(intNode*& intList)
{
intNode* current;
if (intList==NULL)
{
cout << "No elements to print-list is empty." << endl;
}
else
{
cout << "Elements in list:" << endl;
current = intList;
while (current!=NULL)
{
cout << current->intValue <<endl;
current=current->nextNode;
}
if (current==NULL)
{
cout << "End of list" << endl;
}
}
}
リストを作成する場所は次のとおりです。
void createList(intNode*& intList)
{
intNode* lastInt; //points to last integer in file
lastInt = NULL;
int fileInt; //int read from input file
ifstream intInputFile;
intNode* anotherInt;
anotherInt = new intNode;
intInputFile.open("intInput.txt");
if (intInputFile.is_open())
{
cout << "intInput.txt open successful" << endl;
cout << "check" <<endl;
while(intInputFile>>fileInt)
{
if(intList==NULL)
{
intList = anotherInt;
lastInt = anotherInt;
lastInt->nextNode = NULL;
lastInt->nextNode = new intNode;
}
else
{
lastInt = lastInt->nextNode;
lastInt->nextNode = NULL;
lastInt->nextNode = new intNode;
}
lastInt->intValue = fileInt;
cout << lastInt->intValue <<endl;
}
lastInt->nextNode->nextNode=NULL;
intInputFile.close();
cout << "List created from input file" << endl;
}
else
{
cout << "intInput.txt open unsuccessful" << endl;
}
}