算法 | Leetcode 面试题 02.01. 移除重复节点

编写代码,移除未排序链表中的重复节点。保留最开始出现的节点。

示例1:

输入:[1, 2, 3, 3, 2, 1]
输出:[1, 2, 3]

示例2:

输入:[1, 1, 1, 1, 2]
输出:[1, 2]

提示:

链表长度在[0, 20000]范围内。
链表元素在[0, 20000]范围内。
进阶:

如果不得使用临时缓冲区,该怎么解决?

题解:
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode removeDuplicateNodes(ListNode head) {
        if(head==null) return null;
        //建立虚拟头结点,方便删除节点
        //采用哈希表存储遍历过的节点O(N)
        // Set<Integer> set = new HashSet<>();
        // ListNode dummyHead = new ListNode(-1);
        // dummyHead.next = head;
        // ListNode pre = dummyHead;
        // while(pre.next!=null){
        //     if(!set.contains(pre.next.val)){
        //         set.add(pre.next.val);
        //         pre = pre.next;
        //     }else{
        //         pre.next = pre.next.next;
        //     }
        // }
        // return dummyHead.next;
        //不使用额外存储空间 O(N2)
         ListNode dummyHead = new ListNode(-1);
        dummyHead.next = head;
        ListNode pre = dummyHead;
    while(pre.next!=null){
        ListNode cur = pre.next;
        while(cur.next!=null){
            if(pre.next.val==cur.next.val){
                cur.next = cur.next.next;
            }else{
                cur = cur.next;
            }
        }
        pre = pre.next;
    }
    return dummyHead.next;
    }
}

猜你喜欢

转载自blog.csdn.net/CYK5201995/article/details/106408502