码迷,mamicode.com
首页 > 其他好文 > 详细

83. Remove Duplicates from Sorted List

时间:2016-04-01 07:59:18      阅读:340      评论:0      收藏:0      [点我收藏+]

标签:

 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

标签:

原文地址:http://www.cnblogs.com/warmland/p/5343571.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!