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

LeetCode Remove Duplicates from Sorted List

时间:2015-03-06 19:14:30      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

1.题目

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.


2.解决方案


class Solution {
public:
    ListNode *deleteDuplicates(ListNode *head) {
        if(!head)
          return NULL;
        ListNode* firstNode = head;
        ListNode* currentNode = head;
        ListNode* nextNode = head;
        while(currentNode->next){
            if(currentNode->val == currentNode->next->val){
                if(currentNode->next->next){
                    currentNode->next = currentNode->next->next;
                }else{
                    currentNode->next = NULL;
                }
            }else{
                currentNode = currentNode->next;
            }
            
            
            
        }
        return head;
        
    }
};

思路:比较简单的list删除操作。

http://www.waitingfy.com/archives/1600

LeetCode Remove Duplicates from Sorted List

标签:

原文地址:http://blog.csdn.net/fox64194167/article/details/44102329

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