码迷,mamicode.com
首页 > 编程语言 > 详细

Leetcode 141. Linked List CycleJAVA语言

时间:2017-03-12 11:54:55      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:链表存在环

Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?

题意:判断链表有没有环

/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public boolean hasCycle(ListNode head) {
        ///定义两个快慢指针。有环的话快指针一定会和慢指针相遇。否则快指针就提前到尾巴了
        ////应该是我那会的考研题ca
        if(head==null || head.next==null || head.next.next==null)return false;
        ListNode fast=head.next.next;
        ListNode slow=head.next;
        while(fast!=slow){
            if(fast.next!=null && fast.next.next!=null){
                fast=fast.next.next;
                slow=slow.next;    
            }else{
                //fast提前走到了尾
                return false;
            }
            
        }
        return true;
    }
}

PS:快慢指针。注意判断边界条件

Leetcode 141. Linked List CycleJAVA语言

标签:链表存在环

原文地址:http://fulin0532.blog.51cto.com/6233825/1905474

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