题目描述
在一个排序的链表中,存在重复的结点,请删除该链表中重复的结点,重复的结点不保留,返回链表头指针。 例如,链表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==NULL) return pHead;
return dfs(pHead,pHead->val-1);
}
ListNode* dfs(ListNode* p,int pre)
{
if(p==NULL) return NULL;
if(p->val==pre) return dfs(p->next,p->val);
if(p->next&&p->next->val==p->val) return dfs(p->next,p->val);
p->next=dfs(p->next,p->val);
return p;
}
};