-
Notifications
You must be signed in to change notification settings - Fork 688
/
ReversekElements.java
136 lines (107 loc) · 3.26 KB
/
ReversekElements.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
package linkedlist;
public class ReversekElements {
/*
* Given a singly linked list and an integer 'k', reverse every 'k' elements. If k <= 1, then input list is unchanged.
* If k >= n (n is the length of linked list), then reverse the whole linked list.
*
* Input: 1, 2, 3, 4, 5, 6
* When k = 3,
* Output: 3, 2, 1, 6, 5, 4
*
* Runtime Complexity:
* Linear, O(n).
*
* Memory Complexity:
* Constant, O(1).
*
*
* */
public static LinkedList.Node reverseKNodes(LinkedList.Node head,
int k) {
// if k is 0 or 1, then list is not changed
if (k <= 1 || head == null) {
return head;
}
LinkedList.Node reversed = null;
LinkedList.Node prev_tail = null;
while (head != null && k > 0) {
LinkedList.Node current_head = null;
LinkedList.Node current_tail = head;
int n = k;
while (head != null && n > 0) {
LinkedList.Node temp = head.next;
head.next = current_head;
current_head = head;
head = temp;
n--;
}
if (reversed == null) {
reversed = current_head;
}
if (prev_tail != null) {
prev_tail.next = current_head;
}
prev_tail = current_tail;
}
return reversed;
}
protected static class LinkedList {
private Node head;
public Node head() {
return head;
}
public void printNode(Node node) {
while (node != null) {
System.out.print(node.data + " ");
node = node.next;
}
}
/* Inserts a new Node at end of the list. */
public void push(int new_data) {
Node newNode = new Node(new_data);
if (head == null) {
head = new Node(new_data);
return;
}
newNode.next = null;
Node last = head;
while (last.next != null) {
last = last.next;
}
last.next = newNode;
}
public static class Node {
private Node next;
private Integer data;
public Node(Integer data) {
this.data = data;
}
public Node next() {
return next;
}
public void setNext(Node next) {
this.next = next;
}
public Integer data() {
return data;
}
public void setData(Integer data) {
this.data = data;
}
}
}
public static void main(String[] args) {
LinkedList linkedList1 = new LinkedList();
linkedList1.push(1);
linkedList1.push(2);
linkedList1.push(3);
linkedList1.push(4);
linkedList1.push(5);
linkedList1.push(6);
System.out.println("List 1: ");
linkedList1.printNode(linkedList1.head);
System.out.println();
LinkedList.Node mergedList = reverseKNodes(linkedList1.head, 3);
linkedList1.printNode(mergedList);
}
}