私は、リストにランダムな整数を挿入する関数と、そのリストを表示する関数を持っています。私の今のところで、そのリストを逆に表示する方法はありますか?リンクリストを逆に表示するにはどうすればよいですか?
void InsertRandomInts()
{
LinkedSortedList<int> list;
srand((unsigned)time(NULL));
for (int i = 0; i < 50; ++i)
{
int b = rand() % 100 + 1;
list.insertSorted(b);
}
displayListForward(&list);
}
void displayListForward(SortedListInterface<int>* listPtr)
{
cout << "The sorted list contains " << endl;
for (int pos = 1; pos <= listPtr->getLength(); pos++)
{
cout << listPtr->getEntry(pos) << " ";
}
cout << endl << endl;
}
私がする必要がある場合は、私は迅速な解決策を取るでしょう。ありがとう。 –