码迷,mamicode.com
首页 > 其他好文 > 详细

141. Linked List Cycle

时间:2016-06-21 09:10:58      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

双指针

 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

标签:

原文地址:http://www.cnblogs.com/warmland/p/5602356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!