83. 删除排序链表中的重复元素

题目描述

给定一个排序链表,删除所有重复的元素,使得每个元素只出现一次。

不知道什么法

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

class Solution:
    def deleteDuplicates(self, head: ListNode) -> ListNode:
        a=head
        if head==None:
            return head
        while a.next!=None:
            while a.next!=None and (a.next).val==a.val:
                a.next=(a.next).next
            if a.next==None:
                break
            a=a.next
        return head

因为是顺序链表,所以只需要两个相邻元素进行比较就够了。用一个指针来遍历,遇到下一个元素相同的时候跳过那个元素并原地重新检验直到指针到尾

执行用时 :36 ms, 在所有 Python3 提交中击败了96.51%的用户
内存消耗 :13.4 MB, 在所有 Python3 提交中击败了12.75%的用户

用集合储存

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

class Solution:
    def deleteDuplicates(self, head: ListNode) -> ListNode:
        a=head
        if head==None:
            return head
        b={a.val}
        while a.next!=None:
            if a.next.val not in b:
                b.add(a.next.val)
                a=a.next
            else:
                a.next=a.next.next
        return head

用一个集合来储存出现过的元素,当遇到出现过的元素时就跳过。但是本题说明了是排序链表了,所以没有必要用集合

执行用时 :36 ms, 在所有 Python3 提交中击败了96.51%的用户
内存消耗 :13.4 MB, 在所有 Python3 提交中击败了12.75%的用户

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值