【d54_2】【Java】【力扣】142.环形链表

思路

关于判断是否重复的就hashSet,这种有主动去重性质的类

新建一个hashSet

遍历链表并放进hashSet,

如果不能放,说明这个遍历过,这个就是环的地方

如果最后到遍历到null,说明没环

代码

/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public ListNode detectCycle(ListNode head) {
         //都加入hashset,listNode是地址引用,节点一定唯一
            //如果有不能添加的,返回当前节点
            HashSet<Object> set = new HashSet<>();
            ListNode cur = head;
            while (cur != null) {
                //如果能添加,continue
                if(!set.add(cur)){
                 return cur;   
                }
                 cur = cur.next;
            }
            //等于null,退出,所以没有环,返回null
            return null;
    }
}

记录

总结

关于判断是否重复的就hashSet,这种有主动去重性质的类

相关推荐
赫萝的红苹果40 分钟前
微服务网关初体验
java·微服务·架构
桂月二二1 小时前
使用 Java 与 Spring Boot 实现高效 GraphQL API 开发
java·spring boot·graphql
益达是我1 小时前
【Java】mac安装Java17(JDK17)
java·开发语言·macos
WINGZINGLIU1 小时前
HttpSevletRequest Body信息不能被多次读取的问题
java·后端·安全
HHppGo1 小时前
idea中各种for循环的快捷键
java·ide·intellij-idea
孫治AllenSun2 小时前
【shell】常用100个shell命令使用讲解
java·linux·服务器
.生产的驴2 小时前
SpringBoot 开启热部署 项目热启动 一键调试无需 无需重启
java·运维·开发语言·spring boot·后端·spring·eclipse
江挽枫_Jangmiko2 小时前
JAVA课堂笔记24(反射+设计模式)
java·开发语言·笔记·设计模式
不修×蝙蝠3 小时前
搭建Tomcat(六)---Response的实现
java·服务器·tomcat·response
真想骂*3 小时前
详解C++中“virtual”的概念及其含义
java·jvm·c++