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

19. Remove Nth Node From End of List

时间:2019-10-16 23:20:06      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:from   赋值   避免   follow   next   and   move   ++   指针   

Given a linked list, remove the n-th node from the end of list and return its head.

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.

Follow up:

Could you do this in one pass?

 

2级指针删除, 避免了prev变量, 也不需要判断是否为头指针的问题,也不用增加一个额外的head指针

先用l1 移动n步, 接着l1 和 l2 一起移动直到l1 到末尾

/**
 * 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 *l1=head, **l2=&head;
        for(int i=1;i<n;++i) //这里循环n-1次即可
            l1=l1->next;
        while(l1->next) //注意l2的初始值是&head, 所以第一次循环后 l2的值为  &head->next, 接下来为 & head->next->next
        {
            l1=l1->next;
            l2=&(*l2)->next;
        }
        *l2=(*l2)->next; //此时l2指向需要删除的前一个节点的next, 所以直接赋值为下一个next即可
        return head;
    }
};

 

19. Remove Nth Node From End of List

标签:from   赋值   避免   follow   next   and   move   ++   指针   

原文地址:https://www.cnblogs.com/lychnis/p/11688963.html

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