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

Posted ACBingo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode] 83. 删除排序链表中的重复元素相关的知识,希望对你有一定的参考价值。

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

链表操作

class Solution {
    public ListNode deleteDuplicates(ListNode head) {
        if (head == null) return head;
        if (head.next == null) return head;
        ListNode now = head.next;
        ListNode last = head;
        while (now != null) {
            while (now != null && now.val == last.val) {
                now = now.next;
            }
            last.next = now;
            last = now;
            if (now != null)
                now = now.next;
        }
        return head;
    }
}

以上是关于[leetcode] 83. 删除排序链表中的重复元素的主要内容,如果未能解决你的问题,请参考以下文章

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

LeetCode-83. 删除排序链表中的重复元素(java)

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

Leetcode(83)-删除排序链表中的重复元素

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

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