-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkedList.java
More file actions
133 lines (74 loc) · 1.59 KB
/
LinkedList.java
File metadata and controls
133 lines (74 loc) · 1.59 KB
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
public class LinkedList {
public static Node head;
static class Node{
public int data;
public Node next;
public Node(int data ) {
this.data = data;
}
}
public static void addAtStart(Node node) {
node.next = head;
head = node;
Node p = head;
while(p != null) {
System.out.print(p.data+" ");
p = p.next;
}
}
public static void addAtEnd(Node node) {
Node p = head;
while(p.next != null) {
p = p.next;
}
p.next = node;
p = head;
while(p != null) {
System.out.print(p.data+" ");
p = p.next;
}
}
public static void addAfter(int key , Node node) {
if(head.data == key) {
node.next = head.next;
head.next = node;
return;
}
Node p = head;
while(p != null && p.data != key) {
p = p.next;
}
node.next = p.next;
p.next = node;
p = head;
while(p != null) {
System.out.print(p.data+" ");
p = p.next;
}
return;
}
public static void main(String args[]) {
head = new Node(1);
Node second = new Node(2);
Node third = new Node(3);
head.next = second;
second.next = third;
Node p = head;
while(p != null) {
System.out.print(p.data+" ");
p = p.next;
}
// to add at the beginning
System.out.print("\n");
Node snode = new Node(0);
addAtStart(snode);
//to add at the end
System.out.print("\n");
Node enode = new Node(4);
addAtEnd(enode);
//to add in the middle
System.out.print("\n");
Node mnode = new Node(9);
addAfter(3,mnode);
}
}