思路很好理解,我刚拿着不会做的原因主要是指针不会写,看一下链表指针的写法,这个就比较简单了 function hasCycle( head ) { // write code here if (head == null){ return false; } //快慢两个指针 var slow = head; var fast = head; // ListNode fast = head; while (fast != null && fast.next != null) { //慢指...