zoukankan      html  css  js  c++  java
  • 19. Remove Nth Node From End of List java solutions

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

    For example,

       Given linked list: 1->2->3->4->5, and n = 2.
    
       After removing the second node from the end, the linked list becomes 1->2->3->5.
    

    Note:
    Given n will always be valid.
    Try to do this in one pass.

    Subscribe to see which companies asked this question

     
    /**
     * Definition for singly-linked list.
     * public class ListNode {
     *     int val;
     *     ListNode next;
     *     ListNode(int x) { val = x; }
     * }
     */
    public class Solution {
        public ListNode removeNthFromEnd(ListNode head, int n) {
            if(head == null || head.next == null) return null;
            ListNode slow = head;
            ListNode fast = head;
            while(n>1){
                fast = fast.next;
                n--;
            }
            ListNode pre = new ListNode(-1);
            pre.next = slow;
            while(fast.next != null){
                pre = pre.next;
                slow = slow.next;
                fast = fast.next;
            }
            pre.next = pre.next.next;
            if(slow == head) return pre.next;//如果删除的倒N个节点是头结点的话,做一下特殊处理
            else return head;
        }
    }
  • 相关阅读:
    模块
    Queue(队列)
    Stack(栈)
    Vector(容器)
    位图像素的颜色
    大数处理之三(除法)
    大数处理之二(幂运算)
    浮点数(double)的优势
    大数处理之一(加法和乘法)
    Depth-First Search
  • 原文地址:https://www.cnblogs.com/guoguolan/p/5486065.html
Copyright © 2011-2022 走看看