141. Linked List Cycle

Posted warmland

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了141. Linked List Cycle相关的知识,希望对你有一定的参考价值。

双指针

 1     public boolean hasCycle(ListNode head) {
 2         if(head == null) {
 3             return false;
 4         }
 5         ListNode runner = head;
 6         ListNode walker = head;
 7         while(runner.next != null && runner.next.next != null) {
 8             walker = walker.next;
 9             runner = runner.next.next;
10             if(walker == runner) {
11                 return true;
12             }
13         }
14         return false;
15     }

 

以上是关于141. Linked List Cycle的主要内容,如果未能解决你的问题,请参考以下文章

141. Linked List Cycle

141. Linked List Cycle

141. Linked List Cycle

141. Linked List Cycle

算法分析如何理解快慢指针?判断linked list中是否有环找到环的起始节点位置。以Leetcode 141. Linked List Cycle, 142. Linked List Cycl(代码

141. Linked List Cycle