题目描述
给定一个链表,返回链表开始入环的第一个节点。 如果链表无环,则返回 null。
为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在该链表中没有环。
说明:不允许修改给定的链表。
思路:
可以利用Set的特性,存储不重复,就可以存进去然后遍历,遇到重复的直接return就行
代码实现
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 ListNode detectCycle(ListNode head) {
if(head == null || head.next == null){
return null;
}
ListNode cur = head;
HashSet<Integer> set = new HashSet<>();
while(cur != null){
if(set.contains(cur.val)){
return cur;
}
set.add(cur.val);
cur = cur.next;
}
return null;
}
}