利用Set去重属性来找到环的入口节点,代码如下: public ListNode EntryNodeOfLoop(ListNode pHead) { if (pHead == null) { return pHead; } HashSet<ListNode> set = new HashSet<>(); while (pHead != null) { if (set.add(pHead)) { pHead = pHead.nex...