首页 > 编程语言 > 详细

83. 删除排序链表中的重复元素

时间:2021-08-30 14:49:47      阅读:23      评论:0      收藏:0      [点我收藏+]

Given the head of a sorted linked list, delete all duplicates such that each element appears only once. Return the linked list sorted as well.

Example 1:

技术分享图片

Input: head = [1,1,2]
Output: [1,2]

Example 2:

技术分享图片

Input: head = [1,1,2,3,3]
Output: [1,2,3]

Constraints:

  • The number of nodes in the list is in the range [0, 300].
  • -100 <= Node.val <= 100
  • The list is guaranteed to be sorted in ascending order.

删除排序链表中的重复元素。

时间O(n)

空间O(1)

思路:

每次去看一下当前节点和下一个节点的val是否相同,如是,则跳过下一个节点。

注意1 - 1 - 1这样的case怎么处理。当满足if的条件的时候,一定要写else。

 

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

  

83. 删除排序链表中的重复元素

原文:https://www.cnblogs.com/iwyc/p/15202822.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!