-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ass1linkedlist.java
136 lines (112 loc) · 3.16 KB
/
Ass1linkedlist.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
class Node {
int data;
Node next;
public Node(int data) {
this.data = data;
this.next = null;
}
}
class LinkedList {
Node head;
public LinkedList() {
this.head = null;
}
// Method to add a node at the end of the list
public void add(int data) {
Node newNode = new Node(data);
if (head == null) {
head = newNode;
} else {
Node current = head;
while (current.next != null) {
current = current.next;
}
current.next = newNode;
}
}
// Method to display the linked list
public void display() {
Node current = head;
while (current != null) {
System.out.print(current.data + " ");
current = current.next;
}
System.out.println();
}
// Left shift the linked list by n positions
public void shiftListLeft(int n) {
if (head == null || n <= 0) {
return;
}
int length = getLength();
n = n % length;
if (n == 0) {
return;
}
Node current = head;
for (int i = 0; i < n - 1; i++) {
current = current.next;
}
Node newHead = current.next;
current.next = null;
Node temp = newHead;
while (temp.next != null) {
temp = temp.next;
}
temp.next = head;
head = newHead;
}
// Right shift the linked list by n positions
public void shiftListRight(int n) {
if (head == null || n <= 0) {
return;
}
int length = getLength();
n = n % length;
if (n == 0) {
return;
}
Node current = head;
for (int i = 0; i < length - n - 1; i++) {
current = current.next;
}
Node newHead = current.next;
current.next = null;
Node temp = newHead;
while (temp.next != null) {
temp = temp.next;
}
temp.next = head;
head = newHead;
}
// Helper method to get the length of the linked list
private int getLength() {
int length = 0;
Node current = head;
while (current != null) {
length++;
current = current.next;
}
return length;
}
}
public class Main {
public static void main(String[] args) {
LinkedList linkedList = new LinkedList();
linkedList.add(1);
linkedList.add(2);
linkedList.add(3);
linkedList.add(4);
linkedList.add(5);
System.out.println("Original Linked List:");
linkedList.display();
int leftShifts = 2;
linkedList.shiftListLeft(leftShifts);
System.out.println("After Left Shifting " + leftShifts + " times:");
linkedList.display();
int rightShifts = 3;
linkedList.shiftListRight(rightShifts);
System.out.println("After Right Shifting " + rightShifts + " times:");
linkedList.display();
}
}