zoukankan      html  css  js  c++  java
  • leetcode--Remove Nth Node From End of List

    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.

    /**
     * Definition for singly-linked list.
     * public class ListNode {
     *     int val;
     *     ListNode next;
     *     ListNode(int x) {
     *         val = x;
     *         next = null;
     *     }
     * }
     */
    public class Solution {
       /**We use two pointer to to do this:
    	 * 1.move the first point to n-th node of the linked list
    	 * 2.add a new head to the linked list and put the second point on this new pointer
    	 * 3. move both pointer forward, until the next node of the first pointer is null.
    	 * 4. remove the next of second pointer.
    	 * 5. get rid of the fake head.
    	 * 
    	 * @param head  -- ListNode, head node of a linked list
    	 * @param n --Integer, remove the n-th node from the end of the list
    	 * @return ListNode, the head of the modified linked list
    	 * @author Averill Zheng
    	 * @version 2014-06-05
    	 * @since JDK 1.7
     	 */
    	public ListNode removeNthFromEnd(ListNode head, int n) {
    		if(n == 0)
    			return head;
            ListNode tail = head;
            for(int i = 1; i < n; ++i)
            	tail = tail.next;
            ListNode newHead = new ListNode(0);
            newHead.next = head;
            ListNode beforeRemovedNode = newHead;
            while(tail.next != null){
            	tail = tail.next;
            	beforeRemovedNode = beforeRemovedNode.next; 
            }
            beforeRemovedNode.next = beforeRemovedNode.next.next;
            newHead = newHead.next;
            return newHead;
        }
    }
    

      

  • 相关阅读:
    JVM 垃圾收集与内存分配
    JVM 内存管理机制
    JVM 启动调优总结
    Visual Studio 2019 秘钥
    dubbo初学采坑记
    Intellij idea 一个窗口打开多模块并添加依赖
    Intellij idea 自动生成serialVersionUID
    office visio 2019 下载激活
    ASP.NET Core中的配置
    electron快捷键
  • 原文地址:https://www.cnblogs.com/averillzheng/p/3773945.html
Copyright © 2011-2022 走看看