题解 | 判断链表中是否有环

判断链表中是否有环

https://www.nowcoder.com/practice/650474f313294468a4ded3ce0f7898b9

import java.util.*;
/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public boolean hasCycle(ListNode head) {
       HashSet<ListNode> set = new HashSet<>();
       while(head != null){
        if(set.contains(head)){
            return true;
        }
        set.add(head);
        head = head.next;
       }
       return false;
    }
}

这个方法是使用hashset来存储已经遍历过的节点 如果set中已经有了这个节点 那么自然就是成环了

https://chatgpt.com/share/6923d572-8bec-800c-8e17-4412297c6ef2

这里问了一下gpt 介绍了一下hashset

全部评论

相关推荐

10-14 12:20
门头沟学院 Java
迷茫的大四🐶:摊牌了,我是25届的,你们也不招我
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务