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

【Leetcode】141. Linked List Cycle

时间:2018-02-20 10:32:42      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:eterm   return   span   determine   pos   div   blog   public   没有   

Given a linked list, determine if it has a cycle in it.

Follow up:
Can you solve it without using extra space?

Tips:判断一个链表中是否有环。

思路:设置两个指针,一个快(fast)一个慢(slow),fast指针每次走两步,slow每次走一步。当两个指针相遇,即存在环。若链表中没有环,则fast指针先到达null;

public boolean hasCycle(ListNode head) {
        if (head == null || head.next == null)
            return false;
        boolean hasCy = false;
        ListNode fast = head;
        ListNode slow = head;
        while (fast!=null) {
            if(fast.next!=null){
                fast=fast.next;
                if(fast.next!=null){
                    fast=fast.next;
                    slow=slow.next;
                    if (fast == slow) {
                        hasCy = true;
                        break;
                    }
                }else
                    return false;
            }else
                return false;
        }
        return hasCy;
    }

 

【Leetcode】141. Linked List Cycle

标签:eterm   return   span   determine   pos   div   blog   public   没有   

原文地址:https://www.cnblogs.com/yumiaomiao/p/8454808.html

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