码迷,mamicode.com
首页 > 其他好文 > 详细

[lintcode easy]Remove Nth Node From End of List

时间:2015-11-25 06:36:59      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

Remove Nth Node From End of List

 

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

 
 
Example

Given linked list: 1->2->3->4->5->null, and n = 2.

After removing the second node from the end, the linked list becomes 1->2->3->5->null.
Note

The minimum number of nodes in list is n.

Challenge

O(n) time

 

////same as return Nth Node to End

////Using two pointer to track node, keep their distance as N step.

///If n is the the first node, return head.next;  else ,return head;

/**
 * Definition for ListNode.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int val) {
 *         this.val = val;
 *         this.next = null;
 *     }
 * }
 */ 
public class Solution {
    /**
     * @param head: The first node of linked list.
     * @param n: An integer.
     * @return: The head of linked list.
     */
    ListNode removeNthFromEnd(ListNode head, int n) {
        // write your code here
        if(head==null || n<0) return head;
        ListNode fast=head;
        ListNode slow=new ListNode(0);
        slow.next=head;
        
        while(n--!=0)
        {
            fast=fast.next;
        }
        if(fast==null)
        {
            return head.next;
        }
        while(fast!=null)
        {
            fast=fast.next;
            slow=slow.next;
            
        }
        
        ListNode next=slow.next;
        slow.next=next.next;
        
        return head;
    }
}

 

[lintcode easy]Remove Nth Node From End of List

标签:

原文地址:http://www.cnblogs.com/kittyamin/p/4993474.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!