删除排序链表中的重复元素 II
  给定一个已排序的链表的头 head , 删除原始链表中所有重复数字的节点,只留下不同的数字 。返回 已排序的链表 。
示例:

输入:head = [1,2,3,3,4,4,5]
输出:[1,2,5]
 1
2
2
/**
 * Definition for singly-linked list.
 * function ListNode(val, next) {
 *     this.val = (val===undefined ? 0 : val)
 *     this.next = (next===undefined ? null : next)
 * }
 */
/**
 * @param {ListNode} head
 * @return {ListNode}
 */
var deleteDuplicates = function(head) {
    let map = new Map()
    let l = new ListNode(0, head)
    let cur = l
    while (cur.next) {
      if (map.has(cur.next.val)) {
        cur.next = cur.next.next
      } else if (cur.next && cur.next.next && cur.next.next.val === cur.next.val) {
        map.set(cur.next.val, 0)
        cur.next = cur.next.next.next
      } else {
        cur = cur.next
      }
    }
    return l.next
};
 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list-ii/