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

leetcode-006 detect cycle

时间:2014-07-30 20:20:04      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   div   amp   leetcode   log   ad   

 1 package leetcode;
 2 
 3 public class DetectCycle {
 4     public ListNode detectCycle(ListNode head) {
 5         ListNode s=head;
 6         ListNode f=head;
 7         while(f!=null&&f.next!=null){
 8             s=s.next;
 9             f=f.next.next;
10             if(s==f){
11                 break;
12             }
13         }
14         if(f==null||f.next==null)
15             return null;
16         s=head;
17         while(s!=f){
18             s=s.next;
19             f=f.next;
20         }
21         return s;
22     }
23 }

 

leetcode-006 detect cycle,布布扣,bubuko.com

leetcode-006 detect cycle

标签:style   blog   color   div   amp   leetcode   log   ad   

原文地址:http://www.cnblogs.com/thehappyyouth/p/3878572.html

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