**示例:** ```js 输入: 1->2->3->4->5->NULL 输出: 5->4->3->2->1->NULL ``` **进阶:** 你可以迭代或递归地反转链表。你能否用两种方法解决这道题? 附leetcode地址:[leetcode](https://leetcode-cn.com/problems/reverse-linked-list/solution/tu-jie-leetcodefan-zhuan-lian-biao-by-user7746o/)