"Leetcode" Remove Nth Node from End of List

Source: Internet
Author: User

Topic

Given A linked list, remove the nth node from the end of the list and return its head.

For example,

   1->2->3->4->5  N = 2.   1->2->3->5.

Note:
Given n would always be valid.
Try to do the in one pass.

Answer

Using the idea of quick and slow pointers, the fast hands go first n steps, then go at the same time and stop at the end of the pointer. Note that the processing of the head node, such as 1->2->null, n=2, returns 2->NULL, the code is as follows:

/** * Definition for singly-linked list. * public class ListNode {*     int val; *     ListNode Next; *     listnode (int x) {*         val = x; *         next = null; *< c5/>} *} */public class Solution {public    ListNode removenthfromend (listnode head, int n) {        if (head==null) {            R Eturn head;        }        ListNode Fast=head;        ListNode Slow=head;        while (n-->0) {            fast=fast.next;        }        if (fast==null) {        //Determine if fast is at the end of the            return slow.next;        }        while (fast.next!=null) {//note here, fast must not be null, so the previous case of NULL is            Fast=fast.next;            Slow=slow.next;        }        Slow.next=slow.next.next;        return head;    }}

---EOF---


Leetcode Remove Nth Node from End of List

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.