《剑指offer》面试题24. 反转链表
问题描述
定义一个函数,输入一个链表的头节点,反转该链表并输出反转后链表的头节点。
示例:
输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL
限制:
0 <= 节点个数 <= 5000
代码
这道题与leetcode206.反转链表相同。
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* reverseList(ListNode* head) {
ListNode* a = new ListNode(0);
a->next = NULL;
ListNode *b = head,*c;
while(b != NULL)
{
c = b->next;
b->next = a->next;
a->next = b;
b = c;
}
return a->next;
}
};
结果:
执行用时 :8 ms, 在所有 C++ 提交中击败了73.47%的用户
内存消耗 :8.5 MB, 在所有 C++ 提交中击败了100.00%的用户