構造体を使用せずに、配列だけで連結リストを作成することになっています。トムがリストの最後にあるはずであり、if ステートメントを表示する必要があることを除いて、すべてがインストラクターが望むように機能します。それしか仕事に行けない。助けてくれてありがとう。
#include<iostream>
#include<string>
using namespace std;
int main()
{
int position[10] = {0,1,2,3,4,5,6,7,8,9};
string names[10] = {"dick", "Harry", "Sam", "Tom"};
int link[10] = {1, 2, 3, 99, 5, 6, 7, 8, 9, 10, };
int stkptr = 0;
for(int i = 0; i < 10; i++)
{
if(stkptr == 99)
cout<<"You have reached the end of the list."<<endl;
else
stkptr = link[stkptr];
cout << names[i] << " is in position "
<<position[stkptr] << " and is linked to " << names[stkptr] << endl;
}
return 0;
}