我有一個函數,將隨機整數插入到列表中,並顯示列表的函數。我現在有什麼,有沒有辦法顯示該列表反向?如何反轉顯示鏈接列表?
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;
}
爲了我需要做的事情,我將採取快速解決方案。謝謝。 –