链表 删除单链表的重复节点

力扣链接

  • 题目描述
    编写代码,移除未排序链表中的重复节点。保留最开始出现的节点。
    示例1: 输入:[1, 2, 3, 3, 2, 1]
    输出:[1, 2, 3]
    示例2: 输入:[1, 1, 1, 1, 2]
    输出:[1, 2]
  • 提示: 链表长度在[0, 20000]范围内。 链表元素在[0, 20000]范围内。
  • 进阶:
    如果不得使用临时缓冲区,该怎么解决?
  • 解题思路
  • 思路一:定义两个指针current和p来逐个遍历链表,current元素依次和p比较,直到p为NULL,current向后移动一个。
  • 代码实现
c 复制代码
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
/*
函数主要是两层循环,外层循环实现遍历整个链表,内层循环负责遍历比较当前节点值与其后所有节点值,若相等则跳过,
*/
struct ListNode* removeDuplicateNodes(struct ListNode* head) {
    // Return NULL if the list is empty
    if (head == NULL) return NULL;
    
    struct ListNode *current = head;

    // Iterate through each node in the list
    while (current) {
        struct ListNode* p = current;
        // Check subsequent nodes for duplicates
        while (p->next) {
            // If a duplicate is found, remove it
            if (p->next->val == current->val) {
                p->next = p->next->next;
            } else {
                // Otherwise, move to the next node
                p = p->next;
            }
        }
        // Move to the next node in the list
        current = current->next;
    }
    
    // Return the modified list
    return head;
}
  • 问题记录
  1. 内层循环的结果是在哪保存的?
    内层循环遍历current节点后的所有节点,发现有重复值时,就会改变节点的指向,即已经改变了链表结构。下一次遍历时,链表已经是改变后的链表了。
  • 思路二:利用标记数组,标记当前值是否出现过。
c 复制代码
struct ListNode* removeDuplicateNodes(struct ListNode* head){
       if(head == NULL || head->next == NULL) return NULL;

       int index[20001] = {0};
       index[head->val] = 1;

        struct ListNode *pre = head, *q = head->next;
       while(q){
            if(index[q->val] == 0){
                index[q->val] = 1;
                pre = q;
                q = q->next;
            }else{
                pre->next = q->next;
                q = pre->next;
            }
       }
       return head;
}
相关推荐
小字节,大梦想30 分钟前
【C++】二叉搜索树
数据结构·c++
我是哈哈hh1 小时前
专题十_穷举vs暴搜vs深搜vs回溯vs剪枝_二叉树的深度优先搜索_算法专题详细总结
服务器·数据结构·c++·算法·机器学习·深度优先·剪枝
丶Darling.1 小时前
LeetCode Hot100 | Day1 | 二叉树:二叉树的直径
数据结构·c++·学习·算法·leetcode·二叉树
labuladuo5202 小时前
Codeforces Round 977 (Div. 2) C2 Adjust The Presentation (Hard Version)(思维,set)
数据结构·c++·算法
Indigo_code2 小时前
【数据结构】【链表代码】合并有序链表
数据结构·windows·链表
jiyisuifeng19912 小时前
代码随想录训练营第54天|单调栈+双指针
数据结构·算法
我言秋日胜春朝★2 小时前
【C++】红黑树
数据结构
新晓·故知2 小时前
<基于递归实现线索二叉树的构造及遍历算法探讨>
数据结构·经验分享·笔记·算法·链表
gorgor在码农3 小时前
Mysql 索引底层数据结构和算法
数据结构·数据库·mysql
武昌库里写JAVA4 小时前
【Java】Java面试题笔试
c语言·开发语言·数据结构·算法·二维数组