Possible Duplicate:
How to read a singly linked list backwards?
Reverse a LinkedList c++
How can I reverse the elements of a connected list without using arrays
(I have to use only pointers thats my problem).
How can I (I have to use only pointers thats my problem). |
|||||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You need neither to swap node content or a stack. If you want to reverse a single-linked list just walk it with a pair of pointers plus on intermediate pointer within the iterative loop. Don't forget to update the head pointer when you're finished;
Assuming the list node is something like this:
and it is properly managed, then you invoke as such:
|
|||
|
|
|
Treat the list like a stack, pop the elements off and push them into a new list. |
|||||
|
|
Conside a list called You can reverse the list
OR If its a
|
||||
|