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

[LeetCode]Remove Duplicates from Sorted List II

时间:2015-03-11 14:29:17      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.

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

解题思路:

新建一个辅助表头,使用两个指针pre,p;

技术分享

开始循环判断

1. pre->next=p->next,说明有相同的元素,则p=p->next;知道p->next为空或者发现新的元素;

技术分享

2.判断 p->next!=p ,如果有相同元素的则p必然会向后移动,那么判断成立,pre->next=p->next,连接新的元素;

技术分享

3.p未发生移动,则pre=pre->next,加入这个元素

技术分享

代码:

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode *deleteDuplicates(ListNode *head) {
        if(head==NULL)return NULL;
        //if(head->next==NULL)return head;
        ListNode *newlist=new ListNode(0);
        newlist->next=head;
        ListNode *pre=newlist;
        ListNode *p=head;
        while(p!=NULL)
        {
            while(p->next!=NULL&&pre->next->val==p->next->val)
                p=p->next;
            if(pre->next==p)    //未发生移动
                pre=pre->next;
            else                        //发生移动 要去除
            {
                pre->next=p->next;
            }
            p=p->next;
            //pre=pre->next;
        }
            return newlist->next;
    }
};

[LeetCode]Remove Duplicates from Sorted List II

标签:

原文地址:http://www.cnblogs.com/aorora/p/4329564.html

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