IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> Leetcode 82. Remove Duplicates from Sorted List II--删除链表中的重复节点,重复的节点均删除掉 -> 正文阅读

[数据结构与算法]Leetcode 82. Remove Duplicates from Sorted List II--删除链表中的重复节点,重复的节点均删除掉

Given the?head?of a sorted linked list,?delete all nodes that have duplicate numbers, leaving only distinct numbers from the original list. Return?the linked list?sorted?as well.

Example 1:

Input: head = [1,2,3,3,4,4,5]
Output: [1,2,5]

Example 2:

Input: head = [1,1,1,2,3]
Output: [2,3]

Constraints:

  • The number of nodes in the list is in the range?[0, 300].
  • -100 <= Node.val <= 100
  • The list is guaranteed to be?sorted?in ascending order.
package com.linkedlist;

/**
 * @Author you guess
 * @Date 2022/3/31 22:33
 * @Version 1.0
 * @Desc Leetcode[链表] 82. 删除排序链表中的重复元素 II
 * 删除重复节点(如果有2个节点值相同,把这2个节点均删掉;重复的节点均删除掉)
 */
public class Leetcode_82_RemoveDuplicatesfromSortedListII {


    public static void main(String[] args) {
        ListNode node72 = new ListNode(7, null);
        ListNode node7 = new ListNode(7, node72);
        ListNode node6 = new ListNode(6, node7);
        ListNode node5 = new ListNode(5, node6);
        ListNode node42 = new ListNode(4, node5);
        ListNode node41 = new ListNode(4, node42);
        ListNode node40 = new ListNode(4, node41);
        ListNode node3 = new ListNode(3, node40);
        ListNode node22 = new ListNode(2, node3);
        ListNode node21 = new ListNode(2, node22);
        ListNode node20 = new ListNode(2, node21);
        ListNode node11 = new ListNode(1, node20);
        ListNode node1 = new ListNode(1, node11);

        Leetcode_82_RemoveDuplicatesfromSortedListII main = new Leetcode_82_RemoveDuplicatesfromSortedListII();

        main.printListNode(main.deleteDuplicates(node1));
    }


    /**
     * Runtime: 0 ms, faster than 100.00% of Java online submissions for Remove Duplicates from Sorted List II.
     * Memory Usage: 41.7 MB, less than 93.02% of Java online submissions for Remove Duplicates from Sorted List II.
     *
     * @param head
     * @return
     */
    public ListNode deleteDuplicates(ListNode head) {
        ListNode sentiel = new ListNode(0, head);
        ListNode pre = sentiel;
        while (head != null) {
            if (head.next != null && head.val == head.next.val) {
                while (head.next != null && head.val == head.next.val) {
                    head = head.next;
                }
                pre.next = head.next;
                head = head.next;
            } else {
                pre = pre.next;
                head = head.next;
            }
        }
        return sentiel.next;
    }


    /**
     * head每步都在往后移,pre.next指向遇到的第一个不同值(还需验证后续是否重复),pre指向不重复的值(已验证完后续无重复)
     * pre把不重复的值链接起来
     * sentinel指针一直没变,所以最后返回sentinel.next即可
     *
     * @param head
     * @return
     */
    public ListNode deleteDuplicatesSolution(ListNode head) {
        // sentinel
        ListNode sentinel = new ListNode(0, head);

        // predecessor = the last node
        // before the sublist of duplicates
        ListNode pre = sentinel;

        while (head != null) {
            // if it's a beginning of duplicates sublist
            // skip all duplicates
            System.out.println("外层while,head:" + head.val + ",head.next:" + head.next.val);
            if (head.next != null && head.val == head.next.val) {
                // move till the end of duplicates sublist
                while (head.next != null && head.val == head.next.val) {
                    head = head.next;
                    System.out.println("内层while,head:" + head.val);
                }
                // skip all duplicates
                pre.next = head.next;//只是指向后面第一个不同的值,并没有修改pre的指针。还需要继续判断后续是否重复

                // move forward
                head = head.next;
                System.out.println("pre:" + pre.val + ",head:" + head.val);
                // otherwise, move predecessor
            } else {
                pre = pre.next;//head与head.next值不同时才后移pre指针

                // move forward
                head = head.next;

                System.out.println("pre:" + pre.val + ",head:" + head.val);

            }
        }
        return sentinel.next;
    }


    /**
     * Deprecated
     *
     * @param head
     * @return
     */
    public ListNode deleteDuplicates2(ListNode head) {
        ListNode pre = head;
        ListNode post = head.next;
        int postValue = post.val;
        while (post.next != null) {
            if (postValue == post.next.val) {
                post = post.next;
            } else {
                post = post.next;
                postValue = post.val;
                pre.next = post;
                pre = post;
//                post = post.next;
            }
        }
        return head;
    }


    public void printListNode(ListNode head) {
        while (head != null) {
            System.out.println(head.val);
            head = head.next;
        }
    }

}

?

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-04-04 12:36:03  更:2022-04-04 12:37:18 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/8 5:25:34-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码