• [LeetCode]82. Remove Duplicates from Sorted List排序链表去重


    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.

    Subscribe to see which companies asked this question

     
    解法:设置两个指针curr和next指向相邻两个节点,从头往后扫描,(1)如果某次指向的两个节点值相等,则删除next指向的节点,并且next前移;(2)如果指向的两个节点值不一样,则两个节点都向前移动。
    /**
     * 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 || head->next == NULL) return head;
            ListNode *curr = head, *next = head->next;
            while(next != NULL) {
                if(curr->val == next->val) {
                    ListNode* del = next;
                    next = next->next;
                    curr->next = next;
                    delete del;
                }
                else {
                    curr = next;
                    next = next->next;
                }
            }
            return head;
        }
    };

    或者用一个指针:

    /**
     * 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 || head->next == NULL) return head;
            ListNode* curr = head;
            while(curr != NULL && curr->next != NULL) {
                if(curr->val == curr->next->val) {
                    ListNode* del = curr->next;
                    curr->next = curr->next->next;
                    delete del;
                }
                else
                    curr = curr->next;
            }
            return head;
        }
    };

    需要注意的一点是可能某个重复值出现了超过2次,所以在找到重复值时不能两个指针同时前移。

  • 相关阅读:
    多线程,超时处理
    多线程,超时处理
    多线程,超时处理
    如何使用vue2搭建ElementUI框架
    pip 报错 ssl_.py:339: SNIMissingWarning: An HTTPS request has been made, but the SNI
    从单机到2000万QPS: 知乎Redis平台发展与演进之路
    OAuth2和JWT
    收集统计信息 不会更新DDL时间
    Python爬虫入门教程 8-100 蜂鸟网图片爬取之三
    Python爬虫入门教程 7-100 蜂鸟网图片爬取之二
  • 原文地址:https://www.cnblogs.com/aprilcheny/p/4968055.html
Copyright © 2020-2023  润新知