码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode-----19. 删除链表的倒数第N个节点

时间:2020-06-13 21:11:17      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:problems   second   null   linked   tno   for   ref   lis   node   

代码

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode removeNthFromEnd(ListNode head, int n) {
        ListNode dummy = new ListNode(0);
        dummy.next = head;

        ListNode first = dummy;
        ListNode second = dummy;

        for (int i = 0; i <= n; ++i) first = first.next;
        while (first != null) {
            first = first.next;
            second = second.next;
        }
        second.next = second.next.next;
        return dummy.next;
    }
}

leetcode-----19. 删除链表的倒数第N个节点

标签:problems   second   null   linked   tno   for   ref   lis   node   

原文地址:https://www.cnblogs.com/clown9804/p/13121659.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!