题解 | #链表中环的入口结点#
链表中环的入口结点
http://www.nowcoder.com/practice/253d2c59ec3e4bc68da16833f79a38e4
//用一个set来保存就好了
if(pHead==null)
return null;
Set<listnode> listNodeSet=new HashSet<>();
int count=0;
while(pHead!=null&&!listNodeSet.contains(pHead))
{
listNodeSet.add(pHead);
pHead=pHead.next;
}
return pHead;</listnode>