首页 > 其他 > 详细

LeetCode Remove Nth Node From End of List

时间:2014-07-18 18:24:48      阅读:336      评论:0      收藏:0      [点我收藏+]
class Solution {
public:
    ListNode *removeNthFromEnd(ListNode *head, int n) {
        if (head == NULL) return NULL;
        ListNode* pre = NULL;
        ListNode* cur = head;
        ListNode* fast= cur;
        
        for (int i=1; i<n; i++) {
            fast = fast->next;
        }
        
        while (fast->next != NULL) {
            pre = cur;
            cur = cur->next;
            fast= fast->next;
        }
        
        if (pre == NULL) {
            return head->next;
        } else {
            pre->next = cur->next;
            return head;
        }
    }
};

一次过呗

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

LeetCode Remove Nth Node From End of List

原文:http://www.cnblogs.com/lailailai/p/3853462.html

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