力扣hot100 环形链表 快慢指针 计步器

发布时间:2024年01月22日

Problem: 141. 环形链表
在这里插入图片描述

思路

👨?🏫 参考题解

💖 快慢指针法

时间复杂度: O ( n ) O(n) O(n)
空间复杂度: O ( 1 ) O(1) O(1)

/**
 * 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)
	{
		int cnt = 0;
		ListNode slow = head;
		ListNode fast = head;
		while (fast != null)
		{
			fast = fast.next;
			if (fast != null)
				fast = fast.next;
			if (fast == slow)
				return true;
			slow = slow.next;
		}
		return false;
	}
}

💖 计步器法

时间复杂度: O ( n ) O(n) O(n)
空间复杂度: O ( 1 ) O(1) O(1)

/**
 * 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;
		int cnt = 0;
		while (cnt < 10000)
		{
			cnt++;
			if (head.next == null)
				return false;
			head = head.next;
		}
		return true;
	}
}
文章来源:https://blog.csdn.net/lt6666678/article/details/135752991
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。