递归回溯特性和快慢指针解决删除链表的倒数第N个节点

int sum=0;
struct ListNode* removeNthFromEnd(struct ListNode* head, int n){

if(head == NULL|| head ->next ==NULL){ //空表情况
//最后节点的计数记为1
sum++;
}else{
head ->next = removeNthFromEnd(head->next,n);
sum++;
}

if(sum == n){
//如是头节点。则返回下一个节点
return head->next;
}else{
//如不是,则直接返回当前节点
return head;
}

}

第二种:

 ListNode* removeNthFromEnd(ListNode* head, int n) {
        
        int sum = getCurrentIndexFromLast(head,n);
        if(sum == n){
            return head->next;
        }else{
            return head;
        }       
    }
    
    
    int getCurrentIndexFromLast(ListNode* head,int n){
        if(head->next == 0){
            return 1;
        }else{
            int sum = getCurrentIndexFromLast(head->next,n);
            if(sum == n){
               ListNode * node =  head->next;   
                head->next = node->next;
            }
            return sum + 1;
        }
        
    }

第三种方法:快慢指针+加哑节点

https://i-blog.csdnimg.cn/blog_migrate/cd702b31232182f01f23c2fdf18371ce.gif

//快漫之阵
struct ListNode* removeNthFromEnd(struct ListNode* head, int n){
        struct ListNode dummy;
        struct ListNode* fast= &dummy;
        struct ListNode* low = &dummy;
        dummy.next = head;
        for(int i = 0; i< n; i++){
                fast = fast ->next;
        }
        while(fast ->next!= NULL){
                low = low ->next;
                fast = fast->next;
        }
        low ->next = low ->next->next;
        return dummy.next;
}

第三种:双指针

 

转载于:https://my.oschina.net/1024and1314/blog/3097029

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值