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

leetcode 19 Remove Nth Node From End of List

时间:2017-02-10 23:28:51      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:rom   nod   list   ret   while   next   for   ++   from   

class Solution {
public:
    ListNode* removeNthFromEnd(ListNode* head, int n) {
        if (!head->next) return NULL;
        ListNode *pre = head, *cur = head;
        for (int i = 0; i < n; ++i) cur = cur->next;
        if (!cur) return head->next;
        while (cur->next) {
            cur = cur->next;
            pre = pre->next;
        }
        pre->next = pre->next->next;
        return head;
    }
};

leetcode 19 Remove Nth Node From End of List

标签:rom   nod   list   ret   while   next   for   ++   from   

原文地址:http://www.cnblogs.com/wangkun1993/p/6388135.html

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