编程语言
首页 > 编程语言> > 算法题:206反转链表

算法题: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;
    }
}

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

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

 

 

标签:head,ListNode,206,示例,next,链表,算法,null
来源: https://www.cnblogs.com/wyw123456/p/15829688.html