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;
        }
    }
  • 相关阅读:
    AngularJS 包含HTML文件
    AngularJS 验证
    AngularJS html+DOM+ng-click事件
    表格边框css
    Ubantu下面命令听歌(豆瓣fm)
    AngularJS $http
    AngularJS过滤器
    Python-注册
    Python之内置函数
    生成手机号码代码
  • 原文地址:https://www.cnblogs.com/guoguolan/p/5486065.html
Copyright © 2011-2022 走看看