首页 > 其他 > 详细

leetcode-006 detect cycle

时间:2014-07-30 20:20:04      阅读:147      评论:0      收藏:0      [点我收藏+]
 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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!