- Notifications
You must be signed in to change notification settings - Fork 366
/
Copy pathLinked-List-Implementation.java
73 lines (67 loc) · 1.78 KB
/
Linked-List-Implementation.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
importjava.io.*;
publicclassLinkedList {
Nodehead;
// LINKED LIST NODE
staticclassNode
{
intdata;
Nodenext;
// Constructor
Node(intd)
{
data = d;
next = null;
}
}
// Method to insert a new node
publicstaticLinkedListinsert(LinkedListlist, intdata)
{
Nodenew_node = newNode(data);
// If the Linked List is empty,
// then make the new node as head
if (list.head == null)
{
list.head = new_node;
}
else
{
// Else traverse till the last node
// and insert the new_node there
Nodelast = list.head;
while (last.next != null) {
last = last.next;
}
// Insert the new_node at last node
last.next = new_node;
}
// Return the list by head
returnlist;
}
// Method to print the LinkedList.
publicstaticvoidprintList(LinkedListlist)
{
NodecurrNode = list.head;
System.out.print("LinkedList: ");
// Traverse through the LinkedList
while (currNode != null) {
// Print the data at current node
System.out.print(currNode.data + " ");
// Go to next node
currNode = currNode.next;
}
}
// Driver code
publicstaticvoidmain(String[] args)
{
LinkedListlist = newLinkedList();
list = insert(list, 1);
list = insert(list, 2);
list = insert(list, 3);
list = insert(list, 4);
list = insert(list, 5);
list = insert(list, 6);
list = insert(list, 7);
list = insert(list, 8);
printList(list);
}
}