A simpler solution is to just let the current node point to the previous node while going through your linked list, saving the previous and next nodes as you go.
void LinkedList::reversedLinkedList()
{
if(head == ...READ MORE
Aug 5, 2022
in C++
by
Damon
• 4,960 points
•
982 views