链表中环的入口节点
Posted jingm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了链表中环的入口节点相关的知识,希望对你有一定的参考价值。
题目:给一个链表,若其中包含环,请找出该链表的环的入口结点,否则,输出null。
分析一:用HashSet解决
1 public class Solution 2 public ListNode EntryNodeOfLoop(ListNode pHead) 3 4 if(pHead==null)return null; 5 HashSet<ListNode> set=new HashSet<ListNode>(); 6 while(pHead!=null) 7 if(!set.add(pHead)) 8 return pHead; 9 10 pHead=pHead.next; 11 12 return null; 13 14
以上是关于链表中环的入口节点的主要内容,如果未能解决你的问题,请参考以下文章