node* nodeArray[1000];
for (int j = 0; j < 1000; j++){
nodeArray[j] = new node;
}
int nodeCounter = 0;
string temporary = "";
string cont; //file content
int i = 0;
while (getline(fileObject, cont)){
for (int k = 0; k < cont.length(); k++)
cont[k] = tolower(cont[k]);
while (i < cont.length()){
這裏是問題出現的地方.Cout行告訴我,我的邏輯很好,因爲它應該將節點插入到我的鏈表列表中。但它實際上並沒有將它們添加到鏈表列表中。信息實際上並沒有存儲在節點陣列內
//cout << "nodeArray [" << nodeCounter << "] : " << temporary << "\n";
insert(nodeArray[nodeCounter], temporary);
temporary = "";
i++;
}
i = 0;
nodeCounter++;
}
這裏還有可能與程序
void insertion(node* tail, string info){
node* temp = new node;
temp->data = info;
temp->previous = tail;
temp->next = NULL;
tail = temp;
}
前兩個代碼片段是否來自主函數?請分享更清晰的代碼。 –
是的,它來自主要功能。但是,插入功能是分開的。它恭維了一個標準的鏈表節點結構。 –
您更改本地變量尾部。 –