Remove Duplicates from Sorted List

Source: Internet
Author: User

Topic:

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

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

Analytical:

Started because of negligence two times runtime error situation, for the list of problems is generally the following situation

1. Null->next

2. The pointer is NULL, also with the pointer val,p = Null,p->val

1 /**2 * Definition for singly-linked list.3 * struct ListNode {4 * int val;5 * ListNode *next;6 * ListNode (int x): Val (x), Next (NULL) {}7  * };8  */9 classSolution {Ten  Public: Onelistnode* Deleteduplicates (listnode*head) { A         if(head = = NULL | | head->next = =NULL) -             returnhead; -ListNode *p =head; the          while(p->next) -         { -             if(P->val = = p->next->val) -P->next = p->next->Next; +             Else -p = p->Next; +         } A         returnhead; at     } -};

Remove Duplicates from Sorted List

Related Article

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.