-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkedList.java
More file actions
87 lines (64 loc) · 1.22 KB
/
LinkedList.java
File metadata and controls
87 lines (64 loc) · 1.22 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
import java.util.*;
public class LinkedList {
public class Node {
int data;
Node next;
Node(int data) {
this.data=data;
}
private void display() {
System.out.println("Read");
}
}
Node head;
int size;
LinkedList() {
}
LinkedList(int data) {
try{
if(head == null) {
Node node=new Node(data);
this.head=node;
} else {
throw new Exception("Head is already initialized");
}
} catch(Exception e) {
System.err.println("Head is initialized");
}
}
public void createNode() {
// Node n=new Node();
// n.display();
}
public void display() {
Node temp=head;
try {
if(head == null) {
throw new Exception("Head is empty");
}
while(temp != null) {
System.out.println(temp.data+" ");
temp=temp.next;
}
} catch(Exception e) {
System.err.println("Head is empty");
}
}
private void insert(int data) {
Node newNode=new Node(data);
Node temp=head;
while(temp.next != null) {
temp=temp.next;
}
temp.next=newNode;
}
public static void main(String[] args) {
System.out.println("Helooo");
LinkedList list=new LinkedList();
list.display();
list.insert(20);
list.insert(30);
list.display();
// list.createNode();
}
}