编写代码,移除未排序链表中的重复节点。保留最开始出现的节点。
示例1:
输入:[1, 2, 3, 3, 2, 1]
输出:[1, 2, 3]
示例2:
输入:[1, 1, 1, 1, 2]
输出:[1, 2]
提示:
1.链表长度在[0, 20000]范围内。
2.链表元素在[0, 20000]范围内。
进阶:
如果不得使用临时缓冲区,该怎么解决?
Python实现
由于链表是无序的,因此需要使用集合来辅助去重。
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution:
def removeDuplicateNodes(self, head: ListNode) -> ListNode:
if not head or not head.next:
return head
st = {head.val}
cur = head
while cur.next:
if cur.next.val not in st:
st.add(cur.next.val)
cur=cur.next
else:
cur.next = cur.next.next
return head