Tagged Questions
0
votes
1answer
371 views
Reverse a linked list [closed]
Problem: create a linked list and reverse the list appending with '<-'.
Example, if the linked list is [1,2,3,4,5,6], so the result is 5 <- 4 <- 3 <- 2 <- 1.
Here is the code
class ...