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

141. Linked List Cycle

时间:2016-10-26 22:25:45      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:bool   ext   选择   list   efi   public   int   class   color   

不定期更新leetcode解题java答案。

采用pick one的方式选择题目。

这个是把今天做的简单版给做完发出来。

思路类同上文的前一半,具体代码如下:

 1 /**
 2  * Definition for singly-linked list.
 3  * class ListNode {
 4  *     int val;
 5  *     ListNode next;
 6  *     ListNode(int x) {
 7  *         val = x;
 8  *         next = null;
 9  *     }
10  * }
11  */
12 public class Solution {
13     public boolean hasCycle(ListNode head) {
14         ListNode slow = head, fast = head;
15         while(fast != null && fast.next != null){
16             slow = slow.next;
17             fast = fast.next.next;
18             if(slow == fast)
19                 return true;
20         }
21         return false;
22     }
23 }

 

141. Linked List Cycle

标签:bool   ext   选择   list   efi   public   int   class   color   

原文地址:http://www.cnblogs.com/zslhq/p/6001957.html

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