forked from karterhhgg/JavaProgramming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSingleLinkedList.java
More file actions
163 lines (136 loc) · 4.26 KB
/
SingleLinkedList.java
File metadata and controls
163 lines (136 loc) · 4.26 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package linkedList;
import node.SingleNode;
public class SingleLinkedList {
private SingleNode head;
private SingleNode tail;
private int size;// denotes size of list
public SingleNode createSingleLinkedList(int nodeValue) {
head = new SingleNode();
SingleNode node = new SingleNode();
node.setValue(nodeValue);
node.setNext(null);
head = node;
tail = node;
size = 1;// size =1
return head;
}
public SingleNode getHead() {
return head;
}
public void setHead(SingleNode head) {
this.head = head;
}
public SingleNode getTail() {
return tail;
}
public void setTail(SingleNode tail) {
this.tail = tail;
}
public int getSize() {
return size;
}
public void setSize(int size) {
this.size = size;
}
public void insertInLinkedList(int nodeValue, int location) {
SingleNode node = new SingleNode();
node.setValue(nodeValue);
if (!existsLinkedList()) { // Linked List does not exists
System.out.println("The linked list does not exist!!");
return;
} else if (location == 0) {// insert at first position
node.setNext(head);
head = node;
} else if (location >= size) {// insert at last position
node.setNext(null);
tail.setNext(node);
tail = node;
} else {// insert at specified location
SingleNode tempNode = head;
int index = 0;
while (index < location - 1) {// loop till we reach specified node
tempNode = tempNode.getNext();
index++;
}//tempNode currently references to node after which we should insert new node
SingleNode nextNode = tempNode.getNext(); //this is the immediate next node after new node
tempNode.setNext(node);//update reference of tempNode to reference to new node
node.setNext(nextNode);//update newly added nodes' next.
}
setSize(getSize()+1);
}
public boolean existsLinkedList() {
// if head is not null retrun true otherwise return false
return head != null;
}
//Traverses Linked List
void traverseLinkedList() {
if (existsLinkedList()) {
SingleNode tempNode = head;
for (int i = 0; i < getSize(); i++) {
System.out.print(tempNode.getValue());
if (i != getSize() - 1) {
System.out.print(" -> ");
}
tempNode = tempNode.getNext();
}
}else {
System.out.println("Linked List does not exists !");
}
System.out.println("\n");
}
//Deletes entire Linked List
void deleteLinkedList() {
System.out.println("\n\nDeleting Linked List...");
head = null;
tail = null;
System.out.println("Linked List deleted successfully !");
}
//Searches a node with given value
boolean searchNode(int nodeValue) {
if (existsLinkedList()) {
SingleNode tempNode = head;
for (int i = 0; i < getSize(); i++) {
if (tempNode.getValue() == nodeValue) {
System.out.print("Found the node at location: "+i+"\n");
return true;
}
tempNode = tempNode.getNext();
}
}
System.out.print("Node not found!! \n");
return false;
}
//Deletes a node having a given value
public void deletionOfNode(int location) {
if (!existsLinkedList()) {
System.out.println("The linked list does not exist!!");// Linked List does not exists
return;
} else if (location == 0) { // we want to delete first element
head = head.getNext();
setSize(getSize()-1);
if(getSize() == 0) { // if there are no more nodes in this list
tail = null;
}
}else if (location >= getSize()){ //If location is not in range or equal, then delete last node
SingleNode tempNode = head;
for (int i = 0; i < size - 1; i++) {
tempNode = tempNode.getNext(); //temp node points to 2nd last node
}
if (tempNode == head) { //if this is the only element in the list
tail = head = null;
setSize(getSize()-1);
return;
}
tempNode.setNext(null);
tail= tempNode;
setSize(getSize()-1);
}else { //if any inside node is to be deleted
SingleNode tempNode = head;
for (int i = 0; i < location - 1; i++) {
tempNode = tempNode.getNext(); // we need to traverse till we find the location
}
tempNode.setNext(tempNode.getNext().getNext()); // delete the required node
setSize(getSize()-1);
}//end of else
}//end of method
}// end of class