欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Leetcode初学——反转链表

程序员文章站 2024-02-29 08:03:04
...

题目:

Leetcode初学——反转链表

代码:

class Solution {
    public ListNode reverseList(ListNode head) {
        ListNode cur=head;
        ListNode pre=null;
        while(cur!=null){
            ListNode temp=cur.next;
            cur.next=pre;
            pre=cur;
            cur=temp;
        }
        return pre;
    }
}

结果:

Leetcode初学——反转链表

相关标签: Leetcode学习