双指针解决链表的问题

1. 背景

双指针解决链表相关的问题,基本都是中等难度

  1. 删除链表的倒数第 N 个结点
  2. 旋转链表

2. 方案

leetcode 19

ini 复制代码
public ListNode removeNthFromEnd(ListNode head, int n){
    ListNode second = head;
    ListNode first = head;
    for (int i = 0; i < n; i++) {
        first = first.next;
    }
    if (first == null){
        return head.next;
    }
    while(first.next != null){
        first = first.next;
        second = second.next;
    }
    second.next = second.next.next;
    return head;

}

leetcode 61

ini 复制代码
public ListNode rotateRight(ListNode head, int k){
    if (head == null || head.next == null){
        return head;
    }
    ListNode temp = head;
    int lens = 1;
    while (temp.next != null){
        lens ++;
        temp = temp.next;
    }
    k = k % lens;
    ListNode first = head;
    ListNode second = head;
    int idx = 0;
    while(first.next != null){
        if (idx ++ < k){
            first = first.next;
        } else {
            first = first.next;
            second = second.next;
        }
    }
    first.next = head;
    head = second.next;
    second.next = null;
    return  head;
}
相关推荐
网络风云17 分钟前
golang中的包管理-下--详解
开发语言·后端·golang
京东零售技术1 小时前
一次线上生产库的全流程切换完整方案
后端
我们的五年1 小时前
【C语言学习】:C语言补充:转义字符,<<,>>操作符,IDE
c语言·开发语言·后端·学习
Like_wen2 小时前
【Go面试】工作经验篇 (持续整合)
java·后端·面试·golang·gin·复习
Channing Lewis3 小时前
flask常见问答题
后端·python·flask
Channing Lewis3 小时前
如何保护 Flask API 的安全性?
后端·python·flask
Ai 编码助手12 小时前
在 Go 语言中如何高效地处理集合
开发语言·后端·golang
小丁爱养花12 小时前
Spring MVC:HTTP 请求的参数传递2.0
java·后端·spring
Channing Lewis12 小时前
什么是 Flask 的蓝图(Blueprint)
后端·python·flask
轩辕烨瑾13 小时前
C#语言的区块链
开发语言·后端·golang