83. Remove Duplicates from Sorted List

Posted warmland

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了83. Remove Duplicates from Sorted List相关的知识,希望对你有一定的参考价值。

 1     public ListNode deleteDuplicates(ListNode head) {
 2         if(head == null) {
 3             return null;
 4         }
 5         ListNode dummy = new ListNode(-1);
 6         dummy.next = head;
 7         while(head != null && head.next != null) {
 8             if(head.val == head.next.val) {
 9                 head.next = head.next.next;
10             } else {
11                 head = head.next;
12             }
13         }
14         return dummy.next;
15     }

第10行是else,不是每次执行,这样连续重复数字才能被处理

以上是关于83. Remove Duplicates from Sorted List的主要内容,如果未能解决你的问题,请参考以下文章

83. Remove Duplicates from Sorted List

83. Remove Duplicates from Sorted Listeasy

83. Remove Duplicates from Sorted List

83. Remove Duplicates from Sorted List

LeetCode 83. Remove Duplicates from Sorted List

LC_83. Remove Duplicates from Sorted List