环形链表问题
Posted Alice_yufeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了环形链表问题相关的知识,希望对你有一定的参考价值。
/**
* 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 || head.next == null)
return false;
ListNode slow = head;
ListNode fast = head.next;
while (slow != fast)
if (fast == null || fast.next == null)
return false;
slow = slow.next;
fast = fast.next.next;
return true;
以上是关于环形链表问题的主要内容,如果未能解决你的问题,请参考以下文章