面试题 02.01. Remove Duplicate Node LCCI

该博客提供了一个Java实现的解决方案,用于移除单链表中的重复节点。通过使用HashSet来存储已遍历过的节点值,避免了重复节点的出现。在遍历链表的过程中,如果当前节点值不在集合中,则将其添加到结果链表中,否则跳过。这种方法有效地去除了链表的重复元素,保持了链表的顺序。
摘要由CSDN通过智能技术生成

在这里插入图片描述

[bug]
[failure case] 1 2 3 3 2 1

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode removeDuplicateNodes(ListNode head) {

        Set<Integer> set = new HashSet<>();

        ListNode p = new ListNode(-1);
        ListNode c = head;
        p.next = c;

        while(c!=null){
            if(!set.contains(c)){
                set.add(c.val);
                if(p.next!=c){
                    p.next = c;                    
                }
                p = p.next;
                c = c.next;                    
            }
            else {
                c = c.next;
            }
        }
        p.next = null;
        return head;        
    }
}```

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值