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

[LeetCode] 83. Remove Duplicates from Sorted List

时间:2016-09-04 11:32:50      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:

题目:

Given a sorted linked list, delete all duplicates such that each element appear only once.

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

简单题。第一次通过的时候没有加入对head是null的判断,运行23ms,加入了以后只有12ms。必要的判断加入还是能提高很多效率的。

/**
 * 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) return head;
        ListNode* cur = head;
        
        while(cur){
            if (!cur->next) break;
            if (cur->next->val == cur->val){
                cur->next = cur->next->next;
            }
            else{
                cur = cur->next;
            }
        }
        
        return head;
    }
};

 

[LeetCode] 83. Remove Duplicates from Sorted List

标签:

原文地址:http://www.cnblogs.com/Doctengineer/p/5838730.html

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