求star

开源不易,喜欢请点个star吧

Ocean Han
320 字
2 分钟
Leetcode->删除排序链表中的重复元素
2022-03-23

题目#

给定一个已排序的链表的头 head删除所有重复的元素,使每个元素只出现一次 。返回 已排序的链表

来源:力扣(LeetCode)

链接:https://leetcode-cn.com/problems/merge-sorted-array

示例1:#

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

示例2:#

输入:head = [1,1,2,3,3]

输出:[1,2,3]

  • 提示:
    • 链表中节点数目在范围 [0, 300]
    • -100 <= Node.val <= 100
    • 题目数据保证链表已经按升序 排列

解 题#

思 路#

TIP

做题时要审题清晰,这道题目是确保链表已经按升序排列的,所以那就比较简单了,遍历一遍链表然后删除重复节点即可

1. 非递归循环遍历:tada:#

代码#

/**
 * 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) {
    if(head == null || head.next == null ){
        return head
    }
    let cur = head
    while(cur.next) {
        if(cur.val == cur.next.val ){
            cur.next = cur.next.next
        }else {
            cur = cur.next
        }
    }
    return head
}

2. 递 归:tada:#

代 码#

/**
 * 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) {
    if(head == null || head.next == null ) {
        return head 
    }
    head.next = deleteDuplicates(head.next)
    if(head.val == head.next.val)
        head = head.next
    return head
};
Leetcode->删除排序链表中的重复元素
https://blog.oceanh.top/posts/algorithm/删除排序链表中的重复元素/
作者
Ocean Han
发布于
2022-03-23
许可协议
CC BY-NC-SA 4.0
最后修改时间
2024-08-10 10:08:49