-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathourLinkedList.java
114 lines (104 loc) · 2.05 KB
/
ourLinkedList.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
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
package dataStructure;
public class ourLinkedList<T>{
LinkedListNode head;
public int size;
public ourLinkedList() {
size = 0;
head = null;
}
class LinkedListNode<T>{
T data;
LinkedListNode<T> next;
public LinkedListNode() {
data = null;
next = null;
}
public LinkedListNode(T data){
this.data = data;
this.next = null;
}
}
public void append(T data){
size++;
if(head == null){
head = new LinkedListNode<T>(data);
return;
}
LinkedListNode<T> temp = head;
while(temp.next!=null){
temp = temp.next;
}
temp.next = new LinkedListNode<T>(data);
}
public void delete(int index) throws listIndexOutOfBound{
if(index>=size){
throw new listIndexOutOfBound();
}
size--;
if(index==0){
head = head.next;
return;
}
int count = 0;
LinkedListNode<T> temp = head;
while(count<index-1 && temp!=null){
temp = temp.next;
count++;
}
if(temp.next!=null){
temp.next = temp.next.next;
}
}
public void insert(T data,int index) throws listIndexOutOfBound{
if(index>size){
throw new listIndexOutOfBound();
}
size++;
LinkedListNode<T> temp = head;
LinkedListNode<T> ins = new LinkedListNode<T>(data);
if(index==0){
ins.next = head;
head = ins;
return;
}
int count = 0;
while(count<index-1 && temp!=null){
temp = temp.next;
count++;
}
ins.next = temp.next;
temp.next = ins;
}
public int size(){
return size;
}
public boolean isEmpty(){
if(this.size==0){
return true;
}
else{
return false;
}
}
public String toString(){
LinkedListNode<T> temp = head;
String ans = "";
while(temp!=null){
ans += temp.data + " ";
temp = temp.next;
}
return ans;
}
public T get(int index) throws listIndexOutOfBound{
if(index>=size){
throw new listIndexOutOfBound();
}
LinkedListNode<T> temp = head;
int count = 0;
while(count<index && temp!=null){
temp = temp.next;
count++;
}
return temp.data;
}
}