zoukankan      html  css  js  c++  java
  • 【leetcode❤python】 19. Remove Nth Node From End of List

    #-*- coding: UTF-8 -*-
    #双指针思想,两个指针相隔n-1,每次两个指针向后一步,当后面一个指针没有后继了,前面一个指针的后继就是要删除的节点
    # Definition for singly-linked list.
    # class ListNode(object):
    #     def __init__(self, x):
    #         self.val = x
    #         self.next = None

    class Solution(object):
        def removeNthFromEnd(self, head, n):
            """
            :type head: ListNode
            :type n: int
            :rtype: ListNode
            """
            dummy=ListNode(0)
            dummy.next=head
            p=dummy
            q=dummy
            for i in range(n):
                q=q.next
            while q.next:
                p=p.next
                q=q.next
            
            rec=p.next
            p.next=rec.next
            del rec
            return dummy.next
           

  • 相关阅读:
    公有云数据库服务的申请与使用
    linux集群
    shell基础知识
    LNMP环境配置
    LAMP环境搭建与配置
    12月17日linux学习
    12月16日linux学习(文档的压缩与打包)
    12月13、14号linux学习
    12月12日linux学习
    目录结构
  • 原文地址:https://www.cnblogs.com/kwangeline/p/6059539.html
Copyright © 2011-2022 走看看