前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >leetcode 83 Remove Duplicates from Sorted List

leetcode 83 Remove Duplicates from Sorted List

作者头像
流川疯
发布2019-01-18 16:43:30
3850
发布2019-01-18 16:43:30
举报
文章被收录于专栏:流川疯编写程序的艺术

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.

这里写图片描述
这里写图片描述

下面是我的解决方案,考虑测试用例: 1,1 1,1,1 1,2,2

代码语言:javascript
复制
/**
 * 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 head;

        ListNode* pre = head;
        ListNode* cur = head->next;

        while(cur!=NULL)
        {
            if(cur->val==pre->val)
            {
                pre->next = pre->next->next;
                cur = cur->next;
                if(cur==NULL)return head;
                //free(cur)没有free是不对的,可能引起内存泄漏;
            }
            else if(cur->val!=pre->val)
            {
                pre = pre->next;
                cur = cur->next;
            }

        }
        return head;

    }
};

c++:

代码语言:javascript
复制
public class Solution {
    public ListNode deleteDuplicates(ListNode head) {
        if (head == null) return head;

        ListNode cur = head;
        while(cur.next != null) {
            if (cur.val == cur.next.val) {
                cur.next = cur.next.next;
            }
            else cur = cur.next;
        }
        return head;
    }
}

c语言:

代码语言:javascript
复制
struct ListNode* deleteDuplicates(struct ListNode* head) 
{
    if (head) {
    struct ListNode *p = head;
    while (p->next) {
        if (p->val != p->next->val) {
            p = p->next;
        }
        else {
            struct ListNode *tmp = p->next;
            p->next = p->next->next;
            free(tmp);//这块在实际代码中,非常有必要
        }
    }
}

return head;


}

简洁的python解决方案:

代码语言:javascript
复制
class Solution:
    # @param head, a ListNode
    # @return a ListNode
    def deleteDuplicates(self, head):
        node = head
        while node:
            while node.next and node.next.val == node.val:
                node.next = node.next.next

            node = node.next

        return head
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2015年05月20日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档