-
Notifications
You must be signed in to change notification settings - Fork 0
/
DetectCycleInLL.java
101 lines (79 loc) · 2.24 KB
/
DetectCycleInLL.java
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
package hacktoberfest;
class Node {
int data;
Node next;
// Parameterized constructor
Node(int d) {
data = d;
next = null;
}
}
public class DetectCycleInLL {
// Method to create a Linked List
public static Node createLinkedList(Node head, int data) {
Node temp = new Node(data);
if(head == null) {
head = temp;
}
else {
Node ptr = head;
while(ptr.next != null) {
ptr = ptr.next;
}
ptr.next = temp;
}
return head;
}
/* Method to create a cycle in the Linked List by connecting
* node at position 'a' to node at position 'b' */
public static void createCycle(Node head, int a, int b) {
int cnta = 0, cntb = 0;
Node ptr1 = head;
Node ptr2 = head;
while(cnta != a || cntb != b) {
if(cnta != a) {
ptr1 = ptr1.next;
++cnta;
}
if(cntb != b) {
ptr2 = ptr2.next;
++cntb;
}
}
ptr2.next = ptr1;
}
// Method to detect a cycle in the Linked List using two pointers
public static boolean detectCycle(Node head) {
if(head == null) {
return false;
}
Node fast = head; // Moves two steps at a time
Node slow = head; // Moves one step at a time
while(fast.next != null && fast.next.next != null) {
fast = fast.next.next;
slow = slow.next;
if(fast == slow) {
return true;
}
}
return false;
}
public static void main(String[] args) {
Node head = null;
// Creating a Linked List with elements 1, 2, 3, 4, 5
head = createLinkedList(head, 1);
head = createLinkedList(head, 2);
head = createLinkedList(head, 3);
head = createLinkedList(head, 4);
head = createLinkedList(head, 5);
// Creating a cycle by connecting nodes at positions 1 and 3
createCycle(head, 1, 3);
// Checking if the Linked List has a cycle
if(detectCycle(head) == true) {
System.out.println("The Linked List has a Cycle!");
}
else{
System.out.println("The Linked List does not have a Cycle!");
}
}
}