public class Solution { public ListNode EntryNodeOfLoop(ListNode pHead) { ArrayList<Integer> arr = new ArrayList<>();//定义存放值的list if(pHead==null){ return null; } boolean is = isLoop(pHead);//判断是不是环形 ListNode head = pHead; if(is){ while(true){ ...