(LeetCode 面试经典 150 题) 82. 删除排序链表中的重复元素 II (链表)

题目:82. 删除排序链表中的重复元素 II


思路:链表,时间复杂度0(n)。

C++版本:

cpp 复制代码
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode() : val(0), next(nullptr) {}
 *     ListNode(int x) : val(x), next(nullptr) {}
 *     ListNode(int x, ListNode *next) : val(x), next(next) {}
 * };
 */
class Solution {
public:
    ListNode* deleteDuplicates(ListNode* head) {
    	//避免处理完后为空的情况
        ListNode new_head(0,head);
        ListNode *cur=&new_head;
        // 每次判断都判断两个连续相邻节点
        while(cur->next && cur->next->next){
            int val=cur->next->val;
            // 相等的话,说明这些相等的都不要
            if(cur->next->next->val==val){
            	// 进入循环,直到下一个节点不和val相等为止
                while(cur->next && cur->next->val==val){
                    cur->next=cur->next->next;
                }
            }else{
                cur=cur->next;
            }
        }
        return new_head.next;
    }
};

JAVA版本:

java 复制代码
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public ListNode deleteDuplicates(ListNode head) {
        ListNode new_head=new ListNode(0,head);
        ListNode cur=new_head;
        while(cur.next!=null && cur.next.next!=null){
            int val=cur.next.val;
            if(cur.next.next.val==val){
                while(cur.next!=null && cur.next.val==val){
                    cur.next=cur.next.next;
                }
            }else{
                cur=cur.next;
            }
        }
        return new_head.next;
    }
}

GO版本:

go 复制代码
/**
 * Definition for singly-linked list.
 * type ListNode struct {
 *     Val int
 *     Next *ListNode
 * }
 */
func deleteDuplicates(head *ListNode) *ListNode {
    new_head:=&ListNode{Val:0,Next:head}
    cur:=new_head
    for cur.Next!=nil && cur.Next.Next!=nil {
        val:=cur.Next.Val
        if cur.Next.Next.Val==val {
            for cur.Next!=nil && cur.Next.Val==val {
                cur.Next=cur.Next.Next
            }
        }else{
            cur=cur.Next
        }
    }
    return new_head.Next
}
相关推荐
q***71012 小时前
Spring Boot(快速上手)
java·spring boot·后端
QxQ么么4 小时前
移远通信(桂林)26校招-助理AI算法工程师-面试纪录
人工智能·python·算法·面试
better_liang4 小时前
每日Java面试场景题知识点之-分布式事务处理
java·微服务·面试·springcloud·分布式事务
止观止6 小时前
C++20 Concepts:让模板错误信息不再“天书”
c++·c++20·编程技巧·模板编程·concepts
L***d6706 小时前
Spring Boot 各种事务操作实战(自动回滚、手动回滚、部分回滚)
java·数据库·spring boot
凌波粒6 小时前
Springboot基础教程(3)--自动装配原理/静态资源处理/欢迎页
java·spring boot·后端
likuolei6 小时前
XSL-FO 软件
java·开发语言·前端·数据库
凌波粒6 小时前
SpringBoot基础教程(2)--yaml/配置文件注入/数据校验/多环境配置
java·spring boot·后端·spring
S***26756 小时前
Spring Boot环境配置
java·spring boot·后端
6***83056 小时前
什么是Spring Boot 应用开发?
java·spring boot·后端