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

Remove Duplicates from Sorted List

时间:2015-04-08 06:43:39      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

看了别人讨论,双指针比较方便http://www.cnblogs.com/springfor/p/3862042.html

public class Solution {
    public ListNode deleteDuplicates(ListNode head) {
        if(head==null|| head.next==null) return head;
        ListNode h = new ListNode(-1);
        h.next = head;
        ListNode l1 = head;
        ListNode l2 = l1.next;
        while(l2!=null){
            while(l2!=null && l1.val==l2.val){
                l2 = l2.next;
            }
            l1.next = l2;
            l1=l1.next;
        }
        return h.next;
    }
}

 

Remove Duplicates from Sorted List

标签:

原文地址:http://www.cnblogs.com/jiajiaxingxing/p/4401279.html

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