首页 > 其他 > 详细

19. 删除链表的倒数第 N 个结点

时间:2021-09-11 23:47:46      阅读:37      评论:0      收藏:0      [点我收藏+]

给你一个链表,删除链表的倒数第 n 个结点,并且返回链表的头结点。

进阶:你能尝试使用一趟扫描实现吗?

 技术分享图片

 

 

输入:head = [1,2,3,4,5], n = 2
输出:[1,2,3,5]
示例 2:

输入:head = [1], n = 1
输出:[]
示例 3:

输入:head = [1,2], n = 1
输出:[1]

class Solution {
    public ListNode removeNthFromEnd(ListNode head, int n) {
        ListNode rNode=reverseNode(head);
        if(n==1){
            rNode=rNode.next;
            return reverseNode(rNode);
        }
        
        int index=1;
        ListNode cur=rNode;
        while(cur.next!=null){
            index++;
            if(index==n){
                cur.next=cur.next.next;

            }else{
                cur=cur.next;
            }
        }
        return reverseNode(rNode);
    }

    public ListNode reverseNode(ListNode head){
        ListNode pre=null;
        ListNode cur=head;
        while(cur!=null){
            ListNode next=cur.next;
            cur.next=pre;
            pre=cur;
            cur=next;
        }
        return pre;
    }
}

  

19. 删除链表的倒数第 N 个结点

原文:https://www.cnblogs.com/iwyc/p/15253515.html

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