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

leetcode 82 Remove Duplicates from Sorted List II

时间:2020-04-01 16:35:39      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:struct   remove   leetcode   修改   return   null   etc   solution   amp   

 

/**
 * 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||!head->next) return head;
        ListNode ln(0);ln.next=head;
        ListNode* node=head,*pre=&ln,*cur=node->next;
        while(cur) {
            if(cur->val==node->val) {
                 while(cur&&cur->val==node->val) {
                    ListNode* tmp=cur;
                    cur=cur->next;
                    delete tmp;
                }//如果每次都修改node->next指针的话,更费时;
                pre->next=cur;
                delete node;
                node=pre->next;
                if(node) cur=node->next;
            }//if
           else {
               pre=node;
               node=cur;
               cur=cur->next;
           }
        }
        return ln.next;
    }
};

 

leetcode 82 Remove Duplicates from Sorted List II

标签:struct   remove   leetcode   修改   return   null   etc   solution   amp   

原文地址:https://www.cnblogs.com/LiuQiujie/p/12613265.html

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