博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
92. Reverse Linked List II
阅读量:5167 次
发布时间:2019-06-13

本文共 846 字,大约阅读时间需要 2 分钟。

Reverse a linked list from position m to n. Do it in-place and in one-pass.

For example:

Given 1->2->3->4->5->NULLm = 2 and n = 4,

return 1->4->3->2->5->NULL.

Note:

Given mn satisfy the following condition:
1 ≤ m ≤ n ≤ length of list.

class Solution {

    public ListNode reverseBetween(ListNode head, int m, int n) {

        if (head == null)

            return null;

        ListNode dummy = new ListNode(0);

        dummy.next = head;

        ListNode pre = dummy;

        for (int i = 0; i < m - 1; i++)

            pre = pre.next;

        

        ListNode start = pre.next;

        ListNode then = start.next;

        //pre=1,start = 2, then = 3

 

        for (int i = 0; i < n - m; i++) {

            start.next = then.next;//2->4

            then.next = pre.next;//3->2

            pre.next = then;//1->3

            then = start.next;//then等于4

        }

     //第一次reverse:1-3-2-4-5,pre=1, start=2,then=4

    //第二次reverse:1-4-3-2-5,

        return dummy.next;

    }

}

转载于:https://www.cnblogs.com/MarkLeeBYR/p/10677709.html

你可能感兴趣的文章
矩阵快速幂---BestCoder Round#8 1002
查看>>
Hadoop HBase概念学习系列之HBase里的宽表设计概念(表设计)(二十七)
查看>>
Day03:Selenium,BeautifulSoup4
查看>>
awk变量
查看>>
mysql_对于DQL 的简单举例
查看>>
35. Search Insert Position(C++)
查看>>
[毕业生的商业软件开发之路]C#异常处理
查看>>
有关快速幂取模
查看>>
Linux运维必备工具
查看>>
字符串的查找删除
查看>>
NOI2018垫底记
查看>>
快速切题 poj 1002 487-3279 按规则处理 模拟 难度:0
查看>>
Codeforces Round #277 (Div. 2)
查看>>
【更新】智能手机批量添加联系人
查看>>
NYOJ-128前缀式计算
查看>>
Hive(7)-基本查询语句
查看>>
注意java的对象引用
查看>>
C++ 面向对象 类成员函数this指针
查看>>
NSPredicate的使用,超级强大
查看>>
自动分割mp3等音频视频文件的脚本
查看>>