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

LeetCode "Remove Nth Node From End of List"

时间:2014-07-23 14:52:16      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   re   c   

Another Double pointer solution. 1A!

class Solution {
public:
    ListNode *removeNthFromEnd(ListNode *head, int n) {
        
        ListNode *p = NULL;
        ListNode *p0 = head;
        ListNode *p1 = head;
        ListNode *pre1 = NULL;
        while (--n)        p0 = p0->next;
        
        while (p0->next)
        {
            p0 = p0->next;
            pre1 = p1;
            p1 = p1->next;
        }
        if (p1 == head) p = head->next;
        else
        {
            pre1->next = p1->next;
            p = head;
        }
        return p;
    }
};

LeetCode "Remove Nth Node From End of List",布布扣,bubuko.com

LeetCode "Remove Nth Node From End of List"

标签:style   blog   color   io   re   c   

原文地址:http://www.cnblogs.com/tonix/p/3862651.html

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