-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# 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 | ||
""" | ||
# q = p = ListNode(0) | ||
# p.next = head | ||
p = head | ||
if head is None: | ||
return None | ||
|
||
while p.next: | ||
tem = p.next | ||
if tem.val == val: | ||
p.next = tem.next | ||
else: | ||
p = p.next | ||
|
||
# return head | ||
# head也有可能被删 | ||
# return q.next | ||
|
||
# 这样也行 | ||
if head.val == val: | ||
head = head.next | ||
return head |