Given a linked list, write a function that will print the list in reverse.
Utilisateur anonyme
Do this in linear O(n) time without recursion and without creating a copy of the list. [Hint] You can modify the list, as long as you put it back the way it started.