-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLinkedList.java
More file actions
75 lines (64 loc) · 1.59 KB
/
Copy pathLinkedList.java
File metadata and controls
75 lines (64 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
package graphs;
public class LinkedList {
Node front;
Node rear;
public LinkedList() {
front = rear = null;
}
static class Node {
Vertex data;
Node next;
public Node(Vertex data) {
this.data = data;
next = null;
}
}
public boolean isEmpty() {
return front == null;
}
public void insertLast(Vertex newData) {
Node newNode = new Node(newData);
if (isEmpty()) {
front = newNode;
} else {
rear.next = newNode;
}
rear = newNode;
}
public void insertFirst(Vertex newData) {
Node newNode = new Node(newData);
if (!isEmpty()) {
newNode.next = front;
}
front = newNode;
}
public Vertex deleteFirst() {
if (front == null) {
return null;
}
Vertex temp = front.data;
if (front.next == null) {
rear = null;
}
front = front.next;
return temp;
}
public Vertex deleteLast() {
Vertex temp = rear.data;
Node current = front;
while (current.next != rear) {
current = current.next;
}
current.next = null;
rear = current;
return temp;
}
public void displayList() {
Node current = front;
while (current != null) {
System.out.print(current.data.label + " -> ");
current = current.next;
}
System.out.println();
}
}