toastbin / DailyProblems

LeetCode
10 stars 2 forks source link

2.删除链表的倒数第N个节点 #2

Open toastbin opened 5 years ago

toastbin commented 5 years ago

给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。

示例:

给定一个链表: 1->2->3->4->5, 和 n = 2.

当删除了倒数第二个节点后,链表变为 1->2->3->5.

说明:


给定的 n 保证是有效的。

进阶:

你能尝试使用一趟扫描实现吗
gangkaili commented 5 years ago
class ListNode
{
    int val;
    ListNode next;

    ListNode(int x){
        this.val = x;
        this.next = null;
    }

    public static void main(String[] args) {
        ListNode test = new ListNode(1);

        for (int i = 5; i > 1; i--) {
            ListNode tmp = new ListNode(i);
            tmp.next = test.next;
            test.next = tmp;
        }

        test = new Solution().removeNth(test, 3);

        while(test!=null) {
            System.out.print(test.val+"--");
            test = test.next;
        }

    }

}

class Solution{
    //我们可以使用两个指针而不是一个指针。第一个指针从列表的开头向前移动 n+1n+1 步,
    //而第二个指针将从列表的开头出发。现在,这两个指针被 nn 个结点分开。
    //我们通过同时移动两个指针向前来保持这个恒定的间隔,直到第一个指针到达最后一个结点。
    //此时第二个指针将指向从最后一个结点数起的第 nn 个结点。我们重新链接第二个指针所引用的结点的 next 指针指向该结点的下下个结点。
    public ListNode removeNth(ListNode head,int n) {
        ListNode init = new ListNode(0);
        init.next = head;
        ListNode q = init;
        ListNode p = init;
        for (int i = 0; i <=n; i++) {
            if(q.next!=null) {
                q = q.next;
            }
            else {
                System.out.println("该链表节点不足");
            }
        }
        while(q!=null) {
             q = q.next;
             p = p.next;
        }
        p.next = p.next.next;
        return init.next;
    }

}