83. Remove Duplicates

83. Remove Duplicates from Sorted Listarrow-up-right

Given a sorted linked list, delete all duplicates such that each element appear only once.

For example, Given 1->1->2, return 1->2. Given 1->1->2->3->3, return 1->2->3.

My Solutions:

  • 新建dummy记录开头

  • 如果head 和head.next 相同,跳过head.next

class Solution {
    public ListNode deleteDuplicates(ListNode head) {
        
        if (head == null || head.next == null) return head;
        
        ListNode dummy = new ListNode(0);
        dummy.next = head;
        
        while (head != null && head.next != null) {
            if (head.val == head.next.val) {
                head.next = head.next.next;
            } else {
                head = head.next;
            }
        }
        return dummy.next;
        
    }
}

82. Remove Duplicates from Sorted List IIarrow-up-right

Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.

For example, Given 1->2->3->3->4->4->5, return 1->2->5. Given 1->1->1->2->3, return 2->3.

My Solutions:

多增加把重复节点跳过的部分

  • recursive

Last updated