forked from super30admin/PreCourse-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExercise_3.java
60 lines (48 loc) · 1.26 KB
/
Exercise_3.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
//Time Complexity - O(n)
class LinkedList {
Node head; // head of linked list
/* Linked list node */
class Node {
int data;
Node next;
Node(int d) {
data = d;
next = null;
}
}
/* Function to print middle of linked list */
void printMiddle() {
Node sp = head;
Node fp = head;
if (head != null) {
while (fp != null && fp.next != null) {
fp = fp.next.next;
sp = sp.next;
}
System.out.println("Middle element: " + sp.data);
}
}
public void push(int new_data) {
Node new_node = new Node(new_data);
new_node.next = head;
head = new_node;
}
public void printList() {
Node tnode = head;
while (tnode != null) {
System.out.print(tnode.data + "->");
tnode = tnode.next;
}
System.out.println("NULL");
}
}
class Main {
public static void main(String[] args) {
LinkedList llist = new LinkedList();
for (int i = 15; i > 0; --i) {
llist.push(i);
llist.printList();
llist.printMiddle();
}
}
}