cherrychenlee

导航

 

原文地址:https://www.jianshu.com/p/67ddc9e4cb0b

时间限制:1秒 空间限制:32768K

题目描述

在一个排序的链表中,存在重复的结点,请删除该链表中重复的结点,重复的结点不保留,返回链表头指针。例如,链表1->2->3->3->4->4->5处理后为1->2->5。

我的代码

/*
struct ListNode {
    int val;
    struct ListNode *next;
    ListNode(int x) :
        val(x), next(NULL) {
    }
};
*/
class Solution {
public:
    ListNode* deleteDuplication(ListNode* pHead)
    {
        if(pHead==nullptr || pHead->next==nullptr)
            return pHead;
        ListNode* cur=pHead->next;
        if(cur->val==pHead->val){
            while(cur->next && cur->next->val==pHead->val)
                cur=cur->next;
            pHead=deleteDuplication(cur->next);
        }
        else
            pHead->next=deleteDuplication(cur);
        return pHead;
    }
};

运行时间:5ms
占用内存:412k

posted on 2019-05-07 13:14  cherrychenlee  阅读(87)  评论(0编辑  收藏  举报