赞
踩
题目描述:
定义一个函数,输入一个链表的头节点,反转该链表并输出反转后链表的头节点。
示例:
输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL
限制:
0 <= 节点个数 <= 5000
作者:Krahets
链接:https://leetcode-cn.com/leetbook/read/illustration-of-algorithm/9pdjbm/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
解答:
/** * 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) { struct ListNode* pre = nullptr; struct ListNode* cur = head; while(cur != nullptr){ ListNode* tmp = cur->next; cur->next = pre; pre = cur; cur = tmp; } return pre; } };
运行结果:
Notes:
双链表。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。