码迷,mamicode.com
首页 > 编程语言 > 详细

【LeetCode】83.删除排序链表中的重复元素

时间:2018-07-12 23:54:47      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:ini   重复   turn   def   color   delete   find   lse   insert   

/**
 * 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) {
        set<int> s;
        ListNode* temp;
        ListNode* p=head;
        ListNode* pre=head;
        while(p!=NULL){
            if(s.find(p->val)!=s.end()){
                pre->next=p->next;
            }else {
                if(p!=head){
                    pre=pre->next;
                }
                s.insert(p->val);
            }
            p=p->next;
        }
        return head;
    }
};

 

【LeetCode】83.删除排序链表中的重复元素

标签:ini   重复   turn   def   color   delete   find   lse   insert   

原文地址:https://www.cnblogs.com/lettleshel/p/9302358.html

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