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

leetcode Remove Nth Node From End of List

时间:2014-05-23 01:52:29      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   c   code   ext   


题目说:Try to do this in one pass

只用一遍遍历的话,p1先走n节点,p2再走,等到p1到达链表尾的时候p2正好在倒数第n+1个上面鸟

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode *removeNthFromEnd(ListNode *head, int n) {
       ListNode *h;
       h->next=head;//处理删除第一个节点时的情况
       ListNode *p1=h;
       ListNode *p2=h;
       
       for(int i=0;i<n;i++)
                p1=p1->next;
        while(p1->next!=NULL)
        {
            p1=p1->next;
            p2=p2->next;
        }
        
        p2->next=p2->next->next;
        
        return h->next;
    }
};


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

leetcode Remove Nth Node From End of List

标签:style   blog   class   c   code   ext   

原文地址:http://blog.csdn.net/iweberxie/article/details/26522185

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