题解 | #删除有序链表中重复的元素-II#

删除有序链表中重复的元素-II

https://www.nowcoder.com/practice/71cef9f8b5564579bf7ed93fbe0b2024

因为已经升序排序了,就想到用快慢指针。
public ListNode deleteDuplicates (ListNode head) {
    if(head == null || head.next == null){
        return head;
    }
    ListNode pre = head;
    ListNode pos = head.next;
    while(pos != null)
    {
        if(pre.val == pos.val)
        {
            pre.next = pos.next;
            pos = pre.next;
        }
        else
        {
            pre = pre.next;
            pos = pos.next;
        }
    }
    return head;
}

全部评论

相关推荐

HNU_fsq:建议直接出国,这简历太6了。自愧不如
点赞 评论 收藏
分享
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务