【重点】【链表】92. 反转链表 II

发布时间:2024年01月17日

题目

法1:迭代写法

/**
 * 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 reverseBetween(ListNode head, int left, int right) {
        if (head == null || head.next == null) {
            return head;
        }
        ListNode dummy = new ListNode(-1);
        dummy.next = head;
        ListNode preStart = dummy, postEnd = dummy; // 记录要反转链表串的前驱, 后继结点
        while (left > 1) {
            preStart = preStart.next;
            --left;
        }
        while (right >= 0) {
            postEnd = postEnd.next;
            --right;
        }

        // 翻转[preStart.next, postEnd)之间的结点
        ListNode pre = null, cur = preStart.next;
        while (cur != postEnd) {
            ListNode next = cur.next;
            cur.next = pre;
            pre = cur;
            cur = next;
        }
        preStart.next = pre; // 前段连接翻转后的起点
        cur = pre;
        while (cur.next != null) {
            cur = cur.next;
        }
        cur.next = postEnd; // 翻转后的终点连接后段

        return dummy.next;
    }
}
文章来源:https://blog.csdn.net/Allenlzcoder/article/details/135653840
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。