-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNo141_ListNode.cs
60 lines (57 loc) · 1.87 KB
/
No141_ListNode.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
using LeetCode.ExtensionFunction;
using System;
using System.Collections.Generic;
using System.Text;
namespace LeetCode_141
{
//static void Main(string[] args)
//{
// var solution = new Solution();
// while (true)
// {
// //int input = int.Parse(Console.ReadLine());
// //int input2 = int.Parse(Console.ReadLine());
// //string input = Console.ReadLine();
// //string input2 = Console.ReadLine();
// //int[] intArr = input.Split(',').Select(s => int.Parse(s)).ToArray();
// //int input2 = int.Parse(Console.ReadLine());
// //int?[] data = new int?[] { 6, 2, 8, 0, 4, 7, 9, null, null, 3, 5 };
// //var tree = new DataStructureBuilder().BuildTree(data);
// var listNode = new DataStructureBuilder().BuildListNode(new int[] { 1, 2, 3, 4, 5 });
// //listNode.next.next.next.next.next = listNode;
// var res = solution.HasCycle(listNode);
// ConsoleX.WriteLine(res);
// }
//}
public class Solution
{
/// <summary>
/// 弗洛伊德循环查找法
/// 时间复杂度:O(n)
/// 空间复杂度:O(1)
/// </summary>
/// <param name="head"></param>
/// <returns></returns>
public bool HasCycle(ListNode head)
{
var rabbit = head;
var tortoise = head;
do
{
rabbit = MoveToNext(rabbit, 2);
tortoise = MoveToNext(tortoise, 1);
}
while (rabbit != tortoise && rabbit != null);
return rabbit != null;
}
private ListNode MoveToNext(ListNode node, int step)
{
while (step > 0 && node != null)
{
node = node.next;
step--;
}
return node;
}
}
}