删除链表中重复的结点

题目描述

在一个排序的链表中,存在重复的结点,请删除该链表中重复的结点,重复的结点不保留,返回链表头指针。 例如,链表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 || !pHead->next) return pHead;
        ListNode* start = new ListNode(0);
        start->next = pHead;
        ListNode* pre = start;
        while(pre->next)
        {
            ListNode* cur = pre->next;
            while(cur->next && cur->next->val == cur->val)
            {
                cur = cur->next;
            }
            if(cur != pre->next) 
            {
                pre->next = cur->next;
            }else{
                pre = pre->next;
            }
        }
        return start->next;
    }
};
全部评论

相关推荐

后来123321:别着急,我学院本大二,投了1100份,两个面试,其中一个还是我去线下招聘会投的简历,有时候这东西也得看运气
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务