リンクリストを介して番号のリストを並べ替えることを目的とした、かなり基本的なプログラムがあります。
私がハングアップしているのは、要素をリストの先頭に挿入する必要があるときです。これが問題のコードのチャンクです
root-> x = 15であり、プロンプトが表示されたときにユーザーが12を入力すると仮定します。
void addNode(node *root)
{
int check = 0; //To break the loop
node *current = root; //Starts at the head of the linked list
node *temp = new node;
cout << "Enter a value for x" << endl;
cin >> temp->x;
cin.ignore(100,'\n');
if(temp->x < root->x)
{
cout << "first" << endl;
temp->next=root;
root=temp;
cout << root->x << " " << root->next->x; //Displays 12 15, the correct response
}
しかし、この関数を実行した後、私が試してみると
cout << root->x;
main()に戻ると、15が再び表示されます。したがって、コード
root=temp;
関数を離れると失われます。現在、LLに別の要素を追加し、その隣にroot->を指すなど、*rootに対する他の変更が引き継がれています。
提案?