# 反转链表 给你单链表的头节点 head ,请你反转链表,并返回反转后的链表。

 

示例 1:

输入:head = [1,2,3,4,5]
输出:[5,4,3,2,1]

示例 2:

输入:head = [1,2]
输出:[2,1]

示例 3:

输入:head = []
输出:[]

 

提示:

 

进阶:链表可以选用迭代或递归方式完成反转。你能否用两种方法解决这道题?

## template ```python class ListNode: def __init__(self, x): self.val = x self.next = None class Solution: def reverseList(self, head): """ :type head: ListNode :rtype: ListNode """ current = head nextNode = None h = head while current is not None and current.next is not None: nextNode = current.next if nextNode.next is not None: tmpNode = current.next current.next = nextNode.next tmpNode.next = h else: current.next = None nextNode.next = h h = nextNode return h ``` ## 答案 ```python ``` ## 选项 ### A ```python ``` ### B ```python ``` ### C ```python ```