反转链表
题目
定义一个函数,输入一个链表的头节点,反转该链表并输出反转后链表的头节点。
示例:
输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/fan-zhuan-lian-biao-lcof
讲解
对于此题主要是反转,那么一开始的head节点肯定是NULL,那么首先定义一个pre节点为NULL,一个cur指针表示现在的指向(初始化为head),还有个t指针,进行节点数值的替换。
代码
/**
* Definition for singly-linked list.
* function ListNode(val) {
* this.val = val;
* this.next = null;
* }
*/
/**
* @param {ListNode} head
* @return {ListNode}
*/
var reverseList = function(head) {
var cur = new ListNode(0)
var pre = new ListNode(0)
var t = new ListNode(0)
t = null
pre = null
cur = head
while(cur!=null){
t = cur.next
cur.next = pre
pre = cur
cur = t
}
return pre
};