剑指offer NC278删除链表中重复的节点 C++

1、题目描述

在这里插入图片描述

2、在VS2019上运行

#include <iostream>

using namespace std;

struct ListNode {
    int val;
    struct ListNode* next;
    ListNode(int x) :
        val(x), next(NULL) {
    }
};

class Solution {
public:
    ListNode* deleteDuplication(ListNode* pHead) {
        //空链表
        if (pHead == NULL)
            return NULL;
        ListNode* res = new ListNode(0);
        //在链表前加一个表头
        res->next = pHead;
        ListNode* cur = res;
        while (cur->next != NULL && cur->next->next != NULL) {
            //遇到相邻两个节点值相同
            if (cur->next->val == cur->next->next->val) {
                int temp = cur->next->val;
                //将所有相同的都跳过
                while (cur->next != NULL && cur->next->val == temp)
                    cur->next = cur->next->next;
            }
            else
                cur = cur->next;
        }
        //返回时去掉表头
        return res->next;
    }
};

// 主函数用于测试
int main() {
    // 创建链表 1->2->3->3->4->4->5
    ListNode* head = new ListNode(1);
    head->next = new ListNode(2);
    head->next->next = new ListNode(3);
    head->next->next->next = new ListNode(3);
    head->next->next->next->next = new ListNode(4);
    head->next->next->next->next->next = new ListNode(4);
    head->next->next->next->next->next->next = new ListNode(5);

    Solution solution;
    // 调用删除重复元素的函数
    ListNode* result = solution.deleteDuplication(head);

    // 打印删除重复元素后的链表
    while (result != NULL) {
        cout << result->val << " ";
        result = result->next;
    }

    return 0;
}

3、两种方法

(1)方法一:直接比较删除

class Solution {
public:
    ListNode* deleteDuplication(ListNode* pHead) {
        //空链表
        if (pHead == NULL)
            return NULL;
        ListNode* res = new ListNode(0);
        //在链表前加一个表头
        res->next = pHead;
        ListNode* cur = res;
        while (cur->next != NULL && cur->next->next != NULL) {
            //遇到相邻两个节点值相同
            if (cur->next->val == cur->next->next->val) {
                int temp = cur->next->val;
                //将所有相同的都跳过
                while (cur->next != NULL && cur->next->val == temp)
                    cur->next = cur->next->next;
            }
            else
                cur = cur->next;
        }
        //返回时去掉表头
        return res->next;
    }
};

(2)方法二:哈希表法

  • step 1:遍历一次链表用哈希表记录每个节点值出现的次数。
  • step 2:在链表前加一个节点值为0的表头,方便可能的话删除表头元素。
  • step 3:再次遍历该链表,对于每个节点值检查哈希表中的计数,只留下计数为1的,其他情况都删除。
  • step 4:返回时去掉增加的表头
class Solution {
  public:
    ListNode* deleteDuplication(ListNode* head) {
        if (head == nullptr)
            return nullptr;
        unordered_map<int, int> map;
        ListNode* cur = head;
        //遍历链表统计每个节点值出现的次数
        while (cur != nullptr) {
            map[cur->val]++;
            cur = cur->next;
        }
        ListNode* res = new ListNode(0);//虚拟头结点
        res->next = head;
        cur = res;
        //再次遍历链表
        while (cur->next != nullptr) {
            if (map[cur->next->val] != 1)//如果节点值计数不为1
                cur->next = cur->next->next;//删去该节点
            else
                cur = cur->next;
        }
        return res->next;
    }
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值