リンクリストを逆順に作成するときに問題があります。特定のLinkedListからC++で逆リンケージリストを作成
私はJavaの背景から来て、ちょうどC++を始めました。
私のコードをチェックして何が間違っていますか?私はポインタを操作して新しいものを作成していないと思っています。
//this is a method of linkedlist class, it creates a reverse linkedlist
//and prints it
void LinkedList::reversedLinkedList()
{
Node* revHead;
//check if the regular list is empty
if(head == NULL)
return;
//else start reversing
Node* current = head;
while(current != NULL)
{
//check if it's the first one being added
if(revHead == NULL)
revHead = current;
else
{
//just insert at the beginning
Node* tempHead = revHead;
current->next = tempHead;
revHead = current;
}
current = current->next;
}//end while
//now print it
cout << "Reversed LinkedList: " << endl;
Node* temp = revHead;
while(temp != NULL)
{
cout << temp->firstName << endl;
cout << temp->lastName << endl;
cout << endl;
temp = temp->next;
}
}//end method
あなたが楽しみ/学習のために手でリンクリストを書いていますか?標準ライブラリにリンクリストの実装があることは承知していますか? –
私は勉強しようとしています。 – Tony
バグ:current-> nextを "tempHead"に変更すると、 "current = current-> next"を使用して次のノードに移動しようとします。 – MerickOWA