forked from FatimaAlazazi/DataStructure2021
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSingleLinkedList.java
More file actions
210 lines (180 loc) · 4.39 KB
/
SingleLinkedList.java
File metadata and controls
210 lines (180 loc) · 4.39 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
package Task5;
public class SingleLinkedList<A> {
private Node<A> head = null ;
private Node<A> tail = null ;
private int size = 0;
private boolean isEmpty()
{
return size==0;
}
public int Size()
{
return size;
}
public A first()
{
if (isEmpty()) return null ;
return head.getElement();
}
public A Last()
{
if (isEmpty()) return null ;
return tail.getElement();
}
public void Add_first(A New_element)
{
head = new Node<A>(New_element,head);
if(size==0)
tail=head;
size++;
}
public void Add_Last(A New_element)
{
Node<A> newest = new Node<A>(New_element,null);
if(isEmpty())
head=newest;
else
tail.setNext(newest);
tail=newest;
size++;
}
public A Remove_From_Beginning()
{
if(isEmpty())
return null ;
A deleted = head.getElement();
head = head.getNext();
size--;
if(size==0)
tail= null ;
return deleted ;
}
public Node<A> getHead()
{
return head ;
}
public String Print()
{
Node<A> i = head ;
String all ="";
while (i!=null)
{
all = all+i.getElement().toString()+"\n";
i=i.getNext();
}
return all ;
}
/*
HW \\ Question 1 :
*/
public A Second_2_Last()
{
Node<A> newNode = head ;
while (newNode.getNext()!=tail)
{
newNode=newNode.getNext();
}
return (A) newNode.getElement();
}
//////////////////////////////////////////////////////
/*
HW \\ Question 2 :
*/
public int Size_2()
{
Node<A> temp = head ;
int Size_2 = 0 ;
if(head==null)
return Size_2 ;
else
{
Size_2++ ;
while (temp.next!=null)
{
Size_2++;
temp = temp.next ;
}
}
return Size_2 ;
}
//////////////////////////////////////////////////////
/*
HW \\ Question 3 :
*/
public void Rotate() {
if (head != null) {
Node current = head;
while (current.getNext() != null) {
tail = current;
current = current.getNext();
}
if (tail != null) {
tail.setNext(null);
current.setNext(head);
head = current;
}
}
}
//////////////////////////////////////////////////////
/*
HW \\ Question 4 :
*/
public Node<A> concatenation(Node<A> head_1 , Node<A> head_2)
{
Node<A> temp = null ;
if (head_1==null)
return head_2;
if (head_2==null)
return head_1;
temp=head_1.getNext();
while (temp.getNext()!=null)
temp = temp.next;
temp.next=head_2.getNext() ;
return head_1 ;
}
//////////////////////////////////////////////////////
/*
HW \\ Question 5 :
*/
public Node<A> Reverse()
{
if (head==null)
{
return head;
}
Node<A> current = head ;
Node<A> previous = null ;
Node<A> next = current.next ;
while (current!=null)
{
next = current.next ;
current.next=previous ;
previous = current ;
current = next ;
}
head = previous ;
return previous ;
}
//////////////////////////////////////////////////////
public class Node<A> extends SingleLinkedList<A> {
private A Element ;
private Node<A>next ;
public Node(A Element , Node<A> next)
{
this.Element=Element;
this.next=next;
}
public A getElement() {
return Element;
}
public void setElement(A element) {
Element = element;
}
public Node<A> getNext() {
return next;
}
public void setNext(Node<A> next) {
this.next = next;
}
}
}