320 字
2 分钟
Leetcode->删除排序链表中的重复元素
题目
给定一个已排序的链表的头 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/删除排序链表中的重复元素/