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

LeetCode:Remove Duplicates from Sorted List

时间:2014-07-21 09:08:29      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   re   

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 class Solution{
 2 public:
 3     ListNode *deleteDuplicates(ListNode *head){
 4         ListNode *p,*q;
 5         if(head==NULL)
 6         {
 7             return head;
 8         }
 9         p=head;
10         q=p->next;
11         while(q!=NULL)
12         {
13             if(p->val==q->val)
14             {
15                 p->next=q->next;
16                 free(q);
17             }
18             else
19             {
20                 p=q;
21             }
22             q=p->next;
23         }
24         return head;
25     }
26 };

LeetCode:Remove Duplicates from Sorted List,布布扣,bubuko.com

LeetCode:Remove Duplicates from Sorted List

标签:style   blog   color   io   for   re   

原文地址:http://www.cnblogs.com/levicode/p/3856324.html

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