LeetCode——141.环形链表
题目描述
给定一个链表,判断链表中是否有环。
为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在该链表中没有环。
示例1:
示例2:
示例3:
分析:
参考:(整理的非常详细)
1.https://www.cnblogs.com/xudong-bupt/p/3667729.html
2.https://segmentfault.com/a/1190000008453411
代码展示:
/**
* 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) {
ListNode slow=head;
ListNode fast=head;
while(fast!=null && fast.next!=null){
slow=slow.next;
fast=fast.next.next;
if(slow==fast){//如果快慢索引相等,说明存在环路.
return true;
}
}
return false;
}
}
来源:CSDN
作者:小白鲸~
链接:https://blog.csdn.net/wl_0831_963/article/details/86098395