首页 > 其他 > 详细

LeetCode #19 Remove Nth Node From End of List (E)

时间:2015-10-10 00:23:02      阅读:235      评论:0      收藏:0      [点我收藏+]

[Problem]

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.

 

[Analysis]

用固定距离的double pointer解决。

 

[Solution]

public class Solution {
    public ListNode removeNthFromEnd(ListNode head, int n) {
        int i = 1;
        ListNode node = head;
        ListNode pre = new ListNode(0);
        pre.next = head;
        
        while (node.next != null) {
            node = node.next;            
            if (++i > n) {
                pre = pre.next;
            }
        }        
        
        if (pre.next == head) {
            return head.next;
        }
        
        pre.next = pre.next.next;
        return head;
    }
}

 

LeetCode #19 Remove Nth Node From End of List (E)

原文:http://www.cnblogs.com/zhangqieyi/p/4865528.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!