首页 > 其他 > 详细

LeetCode 237 Delete Node in a Linked List 解题报告

时间:2019-04-06 12:13:32      阅读:112      评论:0      收藏:0      [点我收藏+]

题目要求

Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.

题目分析及思路

要求写一个函数,删除一个单链表中的一个结点(除了最后一个)。函数不需要返回值,只需要原地修改给定删除结点。我们可以将要删除结点的两个属性用该结点的下一个结点的两个属性来替代。

python代码

# Definition for singly-linked list.

# class ListNode:

#     def __init__(self, x):

#         self.val = x

#         self.next = None

class Solution:

    def deleteNode(self, node):

        """

        :type node: ListNode

        :rtype: void Do not return anything, modify node in-place instead.

        """

        node.val = node.next.val

        node.next = node.next.next

            

                

            

        

        

 

LeetCode 237 Delete Node in a Linked List 解题报告

原文:https://www.cnblogs.com/yao1996/p/10660933.html

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