zoukankan      html  css  js  c++  java
  • Remove Duplicates from Sorted List II

    Remove Duplicates from Sorted List II

    Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list.

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

    分析: 为了便于管理头指针,创建一个新的头指针,利用几个新的变量来判断cur和prev的关系

    /**
     * Definition for singly-linked list.
     * struct ListNode {
     *     int val;
     *     ListNode *next;
     *     ListNode(int x) : val(x), next(NULL) {}
     * };
     */
    class Solution {
    public:
        ListNode* deleteDuplicates(ListNode* head) {
            if (head ==NULL)
                return head;
                
            ListNode* start = new ListNode(0);
            start->next = head;
    
            ListNode* cur = head;
            ListNode* prev = start;
            while(cur){
                while(cur->next && cur->next->val == prev->next->val)
                    cur = cur->next;
                if(prev->next == cur)
                    prev = cur;
                else
                    prev->next = cur->next; 
                cur = cur->next;
            }
            return start->next;
        }
    };
  • 相关阅读:
    Fliptile
    Face The Right Way
    Jessica's Reading Problem
    Subsequence
    Xcode下载途径
    target信息异常
    清除编译缓存DerivedDate
    Xcode快捷键
    Xcode忽略编译警告
    iOS项目Info.plist中关键字汇总
  • 原文地址:https://www.cnblogs.com/willwu/p/6139595.html
Copyright © 2011-2022 走看看