Python实现"删除排序链表中的重复元素"的两种方法

给定一个有序链表,删除重复元素,保证每一个元素只出现一次

Example 1:

Input: 1->1->2
Output: 1->2

Example 2:

Input: 1->1->2->3->3
Output: 1->2->3

1:时间复杂度O(n),借助另外一个链表

def deleteDuplicates(self, head):
        """
        :type head: ListNode
        :rtype: ListNode
        """
        if not head:
            return None
        head_list = ListNode(0)     #头指针,不动
        cur_List = head_list        #当前指针
        cur_List.next = ListNode(head.val)    #指针移动
        cur_List = cur_List.next
        head = head.next      #head链表移动
        while head:           #遍历head链表
            if head.val != cur_List.val:
                cur_List.next =  ListNode(head.val)
                cur_List = cur_List.next
            head = head.next
        return head_list.next

2:时间复杂度O(n),不借助另外链表

def deleteDuplicates(self, head):
        """
        :type head: ListNode
        :rtype: ListNode
        """
        if not head:
            return None
        cur_List = head
        while cur_List.next:
            if cur_List.val == cur_List.next.val:
                cur_List.next = cur_List.next.next
            else:
                cur_List = cur_List.next
        return head

算法题来自:https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list/description/

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值