剑指offer05 JZ52 两个链表的第一个公共结点
链表中环的入口结点
http://www.nowcoder.com/practice/253d2c59ec3e4bc68da16833f79a38e4
/*
public class ListNode {
int val;
ListNode next = null;
ListNode(int val) {
this.val = val;
}
}
*/
import java.util.HashSet; // 引入 HashSet 类
public class Solution {
public ListNode EntryNodeOfLoop(ListNode pHead) {
HashSet<ListNode> hashset=new HashSet<>();//记录每一个节点,若有环则会重复出现,直接返回
while(pHead!=null){
if(hashset.contains(pHead)){
return pHead; //有重复节点表示有环
}
hashset.add(pHead);
pHead=pHead.next;
}
return null;//无环返回空
}
}