美文网首页
剑指 Offer 第24题:反转链表

剑指 Offer 第24题:反转链表

作者: 放开那个BUG | 来源:发表于2022-07-13 14:00 被阅读0次

    1、前言

    题目描述

    2、思路

    双指针

    3、代码

    class Solution {
        public ListNode reverseList(ListNode head) {
            if(head == null){
                return null;
            }
            ListNode dummy = new ListNode(-1);
            while (head != null){
                ListNode next = dummy.next;
                ListNode temp = head.next;
                dummy.next = head;
                head.next = next;
                head = temp;
            }
            return dummy.next;
        }
    }
    

    相关文章

      网友评论

          本文标题:剑指 Offer 第24题:反转链表

          本文链接:https://www.haomeiwen.com/subject/zanbbrtx.html