算法题:206反转链表

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

示例 1:


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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/reverse-linked-list
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

public class Solution {
    public ListNode reverseList(ListNode head) {
        ListNode x = head;
        ListNode y = null;

        if (x != null) {
            y = x.next;
        } else {
            return head;
        }

        while (y != null) {
            ListNode t = y.next;
            y.next = x;
            x = y;
            y = t;
        }
        head.next = null;
        return x;
    }
}

  这个地方头结点就是第一个元素。。。

头结点的下一个没有置空,,卡了很久,。总算搞出来。

 

算法题:206反转链表

 

上一篇:LeetCode-143-重排链表


下一篇:L24两两交换链表中的结点(链表)