Leetcode (83)-delete repeating elements in a sorted list

Source: Internet
Author: User

Given a sorted list, delete all duplicate elements so that each element appears only once.

Example 1:

Input: 1->1->2 output: 1->2

Example 2:

Input: 1->1->2->3->3 output: 1->2->3

Idea: To delete a sorted list of repeating elements, repeating elements are next to each other, or with two pointers to solve the problem, a pointer to find duplicate elements, a pointer to re-concatenate a new linked list.

listnode* deleteduplicates (listnode* head)     {        ifreturn  head;        ListNode* cur,*p;        Cur=p=head;          while (cur)        {            if(p->val!=cur->val)            {                P->next=cur;                P=cur;            }            Cur=cur->next;        }        P->next=NULL;         return head;    }

Leetcode (83)-delete duplicate elements in the sorted list

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.