程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> leetcode——Remove Duplicates from Sorted List II 刪除排序字符串中重復字符(AC)

leetcode——Remove Duplicates from Sorted List II 刪除排序字符串中重復字符(AC)

編輯:C++入門知識

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.

沒什麼太多講的,可以使用遞歸和迭代兩種方法來做,要仔細考慮各種輸入情況。code如下:

class Solution {
public:
    ListNode *deleteDuplicates(ListNode *head) {
        if(head == NULL)
            return NULL;
        ListNode *first = head,*second = NULL,*result = NULL;
        bool isDup = false;
        while(first!=NULL)
        {
            isDup = false;
            while(first->next != NULL && first->val == first->next->val)
            {
                isDup = true;
                first = first->next;
            }
            if(!isDup)
            {
                if(second == NULL)
                {
                    second = first;
                    if(result == NULL)
                        result = second;
                }
                else
                {
                    second->next = first;
                    second = second->next;
                }
            }
            first = first->next;
        }
        if(second!=NULL)
            second->next = NULL;
        return result;
    }
};


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved