-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMyLinkedList.java
More file actions
90 lines (71 loc) · 1.52 KB
/
MyLinkedList.java
File metadata and controls
90 lines (71 loc) · 1.52 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
public class MyLinkedList {
/*
Implements Linked List with Node class
- remove() removes the first element
- add() inserts from the front of the linked list
*/
class Node {
Object data;
Node next;
Node(Object d){
this.data = d;
this.next = null;
}
public Object getData(){
return data;
}
public Node getNext(){
return next;
}
public void setNext(Node n){
next = n;
}
}
Node head;
int size;
public MyLinkedList(){
head = null;
size = 0;
}
public int getSize(){
return size;
}
public Boolean isEmpty(){
return size==0;
}
public void add(Object data){
// Add the element at the head of the Linked List
Node nextNode = new Node(data);
nextNode.setNext(head);
head = nextNode;
size+=1;
}
public Object remove(){
// Removes the element at the head of the Linked List
if(this.isEmpty()){
return null;
}
Object returnNode = head.getData();
head = head.getNext();
size--;
return returnNode;
}
public String toString(){
String linkedListString= "";
String dataString = "";
Node itr = head;
while(itr != null){
dataString = itr.data.toString();
if(!dataString.equals("")){
linkedListString = dataString+", "+linkedListString;
}
itr = itr.next;
}
if(linkedListString.equals("")){
return linkedListString;
}
else{
return linkedListString.substring(0,linkedListString.length()-2);
}
}
}