19. 删除链表的倒数第 N 个结点

java 复制代码
/**
 * 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 removeNthFromEnd(ListNode head, int n) {
        //注意初始化
        int s_fast = 1;
        ListNode dummyhead = new ListNode();
        dummyhead.next = head;
        ListNode fast = dummyhead;
        ListNode slow = dummyhead;
        while(fast!=null){
            fast = fast.next;
            if (s_fast++<=n+1){
                continue;
            }else{
                slow = slow.next;
            }    
        }
        ListNode temp = slow.next.next;
        slow.next = temp;
        return dummyhead.next;

    }
}
相关推荐
2401_858286113 小时前
L27.【LeetCode笔记】2 的幂(五种解法)
c语言·开发语言·笔记·算法·leetcode
chenziang13 小时前
leetcode hot 100 不同路径
算法·leetcode·职场和发展
走在考研路上3 小时前
力扣459 重复的字符串
数据结构·算法·leetcode
❦丿多像灬笑话、℡3 小时前
leetcode热题100(763. 划分字母区间) c++
c++·算法·leetcode
Smark.3 小时前
(leetcode算法题)384. 打乱数组 398. 随机数索引
算法·leetcode
破-风3 小时前
leetcode-----mysql
算法·leetcode·职场和发展
Smark.4 小时前
(leetcode算法题)382. 链表随机节点
算法·leetcode
HUT_Tyne2657 小时前
力扣--494.目标和
数据结构·算法·leetcode
Gpluso_od10 小时前
LeetCode -Hot100 - 53. 最大子数组和
算法·leetcode
7yewh14 小时前
LeetCode 力扣 热题 100道(二十八)矩阵置零(C++)
c语言·数据结构·c++·算法·leetcode·矩阵