题目
https://leetcode-cn.com/problems/linked-list-cycle/description/
代码
核心的思路是使用快慢指针,fast和slow2个指针,如果存在环的情况,肯定是会重合。
/*
* @lc app=leetcode.cn id=141 lang=java
*
* [141] 环形链表
*/
// @lc code=start
/**
* 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 fast = head;
ListNode slow = head;
while(fast!=null&&fast.next!=null){
fast=fast.next.next;
slow=slow.next;
if(fast==slow){
return true;
}
}
return false;
}
}
// @lc code=end
网友评论