#54. 反转链表(Reverse a Linked List)

反转链表(Reverse a Linked List)

题目要求

使用链表存储数据,反转链表后在打印输出

输入案例

1 2 3 4 5

输出案例

5 4 3 2 1