leetcode 19 Remove Nth Node From End of List

发布时间:2019-06-11 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了leetcode 19 Remove Nth Node From End of List脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

题目详情

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

题目要求输入一个linked list 和一个数字n。要求我们返回删掉了倒数第n个节点的链表。

For 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.

想法

  • 求倒数第n个节点,我们将这个问题转化一下。
  • 我们声明两个指针low和fast,让fast和low指向的节点距离差保持为n。
  • 这样当fast指向了链表中的最后一个节点时,low指针指向的节点就是我们所求的倒数第n个节点了。

解法

    public ListNode removeNthFromEnd(ListNode head, int n) {
        ListNode start = new ListNode(0);
        
        ListNode slow = start , fast = start;
        slow.next = head;
        
        //使fast点和slow点的差距为n
        for(int i=1;i<=n+1;i++){
            fast = fast.next;
        }
        
        //同时移动fast和slow 使得fast到达listnode的末尾
        while(fast != null){
            slow = slow.next;
            fast = fast.next;
        }
        
        //删除倒数第n个节点
        slow.next = slow.next.next;      
        
        return start.next;
    }

脚本宝典总结

以上是脚本宝典为你收集整理的leetcode 19 Remove Nth Node From End of List全部内容,希望文章能够帮你解决leetcode 19 Remove Nth Node From End of List所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: