56.删除链表中重复的结点
题目描述
在一个排序的链表中,存在重复的结点,请删除该链表中重复的结点,重复的结点不保留,返回链表头指针。 例如,链表1->2->3->3->4->4->5 处理后为 1->2->5
记录
# -*- coding:utf-8 -*-
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution:
def deleteDuplication(self, pHead):
# write code here
if pHead == None or pHead.next == None:
return pHead
#创建一个新的头
new_head = ListNode(-1)
new_head.next = pHead
pre = new_head
cur = pHead
while cur:
#相同,跳过该节点
while cur.next and cur.val == cur.next.val:
cur = cur.next
#pre节点也指向下一个新的头节点
if pre.next == cur:
pre = pre.next
#指向不同的节点,抛弃中间相同的所有节点
else:
pre.next = cur.next
cur = cur.next
return new_head.next