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

 

示例 1:

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

示例 2:

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

示例 3:

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

 

提示:

 

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

## template ```cpp #include using namespace std; struct ListNode { int val; ListNode *next; ListNode(int x) : val(x), next(NULL) {} }; class Solution { public: ListNode *reverseList(ListNode *head) { if (head == NULL) return NULL; ListNode *node = NULL; ListNode *temp = head; ListNode *temp1 = head; while (true) { if (temp->next == NULL) { temp1 = temp; temp1->next = node; break; } temp1 = temp; temp = temp->next; temp1->next = node; node = temp1; } return temp1; } }; ``` ## 答案 ```cpp ``` ## 选项 ### A ```cpp ``` ### B ```cpp ``` ### C ```cpp ```