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

[leetcode] 83. Remove Duplicates from Sorted List 解题报告

时间:2017-09-27 10:04:07      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:pre   etc   for   code   each   turn   指针   ret   leetcode   

Given a sorted linked list, delete all duplicates such that each element appear only once.

For example,
Given 1->1->2, return 1->2.
Given 1->1->2->3->3, return 1->2->3.

备份头指针,分3种情况判断即可

public ListNode deleteDuplicates(ListNode head) {
        if (head==null || head.next==null) return head;
        ListNode index =head;
        while (index.next!=null){
            if (index.next.val==index.val && index.next.next!=null){
                index.next=index.next.next;
            }else if (index.next.val==index.val && index.next.next==null){
                index.next=null;
            }else {
                index=index.next;
            }
        }
        return head;
    }

 

[leetcode] 83. Remove Duplicates from Sorted List 解题报告

标签:pre   etc   for   code   each   turn   指针   ret   leetcode   

原文地址:http://www.cnblogs.com/pulusite/p/7599853.html

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