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

删除链表中重复的结点

时间:2019-12-29 14:58:19      阅读:44      评论:0      收藏:0      [点我收藏+]

标签:com   ret   github   style   alt   http   delete   use   span   

题目描述


技术图片

 

解题描述


public ListNode deleteDuplication(ListNode pHead)
{
    if(pHead == null || pHead.next == null)
    {
        return pHead;
    }
    ListNode  next = pHead.next;
    if(pHead.val == next.val)
    {
        while(next != null && pHead.val == next.val)
        {
             next = next.next;
        }
        return deleteDuplication(next);
    }else
    {
        pHead.next = deleteDuplication(pHead.next);
        return pHead;
    }
}

删除链表中重复的结点

标签:com   ret   github   style   alt   http   delete   use   span   

原文地址:https://www.cnblogs.com/ziytong/p/12114831.html

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