Python:无序链表删除重复项

本文介绍了一种使用双重循环实现的顺序删除链表中重复节点的方法。通过外层循环遍历链表,内层循环比较当前节点与后续节点的数据,若相同则删除重复节点,确保链表元素唯一。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

顺序删除,双重循环

class LNode:
    def __init__(self):
        self.data = None
        self.next = None

def removeDou(head):
    if head == None or head.next == None :
        return
    outerCur = head.next
    innerCur = None
    innerPre = None
    while outerCur != None:
        innerCur = outerCur.next
        innerPre = outerCur
        while innerCur != None :
            if innerCur.data == outerCur.data:
                innerPre.next = innerCur.next
                innerCur = innerCur.next
            else:
                innerPre = innerCur
                innerCur = innerCur.next
        outerCur = outerCur.next

if __name__ == '__main__':
    i = 1
    head = LNode()
    cur = head
    lists = [1,3,1,5,5,7]
    for i in range(6):
        tmp = LNode()
        tmp.data = lists[i]
        cur.next = tmp
        cur = tmp
    print('删除重复节点后:',end='')
    removeDou(head)
    cur = head.next
    while cur != None:
        print(cur.data,end=' ')
        cur = cur.next

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值