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

LeetCode[83]Remove Duplicates from Sorted List

时间:2015-05-22 18:41:48      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:

/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* struct ListNode *next;
* };
*/

问题:将有序链表中的重复元素删除

分析:由于有序,所以p结点是否重复只需要和它的前一节点比较是否相等即可

 1 struct ListNode* deleteDuplicates(struct ListNode* head) {
 2     struct ListNode* p, *r;
 3     if(head == NULL || head->next == NULL)
 4     {
 5         return head;
 6     }    
 7     p = head;    
 8     while(p->next)
 9     {
10         if(p->val == p->next->val)
11         {
12             r = p->next;
13             p->next = p->next->next;
14             free(r);
15         }
16         else{
17             p = p->next;
18         }        
19     }
20     return head; 
21 }

 

LeetCode[83]Remove Duplicates from Sorted List

标签:

原文地址:http://www.cnblogs.com/shiddong/p/4522688.html

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