我用java刷 leetcode 206. 反转链表

Posted 深林无鹿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我用java刷 leetcode 206. 反转链表相关的知识,希望对你有一定的参考价值。

这里有leetcode题集分类整理!!!

题目难度:简单
题目描述:

单链表的头节点 head ,请你反转链表,并返回反转后的链表。
在这里插入图片描述
my AC:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public ListNode reverseList(ListNode head) {
        ListNode curr = head;
        ListNode prev = null;
        while (curr != null) {
            ListNode next = curr.next;
            curr.next = prev;
            prev = curr;
            curr = next;
        }
        return prev;
    }
}

以上是关于我用java刷 leetcode 206. 反转链表的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode Java刷题笔记—206. 反转链表

LeetCode 206. 反转链表(迭代,双指针,Java)

(Java) LeetCode 206. Reverse Linked List —— 反转链表

Leetcode 206题 反转链表(Reverse Linked List)Java语言求解

Leetcode 206题 反转链表(Reverse Linked List)Java语言求解

leetcode分类刷题