码迷,mamicode.com
首页 > 编程语言 > 详细

【leetcode?python】 203. Remove Linked List Elements

时间:2016-10-31 21:16:46      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:element   没有   bsp   ini   turn   code   self   efi   nod   

# Definition for singly-linked list.
# class ListNode(object):
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution(object):
    def removeElements(self, head, val):
        """
        :type head: ListNode
        :type val: int
        :rtype: ListNode
        """
        if head==None:return []
        dummy=ListNode(-1)
        dummy.next=head
        p=dummy
        
        while head:
            
            if head.val==val:
                p.next=head.next

                #!!!写的时候一直报错,是因为没有把head节点替换,删除节点时一定要将删除节点替换掉。
                head=p
            
            p=head
            head=head.next
            
            
        return dummy.next

【leetcode?python】 203. Remove Linked List Elements

标签:element   没有   bsp   ini   turn   code   self   efi   nod   

原文地址:http://www.cnblogs.com/kwangeline/p/6016912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!