leetcode141--环形链表
2019-04-20 本文已影响0人
Cuttstage
题目:
给定一个链表,判断链表中是否有环。
为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在该链表中没有环。
思路:
利用快慢指针,一个走两步,一个走一步。有环必相遇,无环则有一个会走到Null。
代码:
/**
* 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) {
if( head == null ) return false;
ListNode l1 = head;
if( head.next == null ) return false;
ListNode l2 = head.next.next;
while( l1 != null && l2 != null && l2.next != null){
if( l1 == l2 ) return true;
l1 = l1.next;
l2 = l2.next.next;
}
return false;
}
}