-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueue.java
More file actions
48 lines (48 loc) · 823 Bytes
/
Queue.java
File metadata and controls
48 lines (48 loc) · 823 Bytes
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
//* Implementing a Queue Using LinkedList(Collections FrameWork) */
import java.util.*;
class Queue
{
LinkedList<Integer> list;
Queue()
{
list =new LinkedList<Integer>();
}
public void Insert(Integer key)
{
list.addLast(key);
}
public Integer Remove()
{
if(!list.isEmpty())
return list.removeFirst();
else
return null;
}
public void Traverse()
{
for(Object o:list)
System.out.println(o);
}
public boolean Search(Object key)
{
return (list.contains(key));
}
public static void main(String a[])
{
Queue q=new Queue();
q.Insert(1);
q.Insert(2);
q.Insert(4);
q.Insert(8);
q.Insert(16);
q.Insert(32);
q.Traverse();
System.out.println("\nQueue has 32 : "+q.Search(32)+"\n");
while(!q.list.isEmpty())
{
System.out.println("Poped from Queue "+q.Remove());
}
q.Traverse();
System.out.println("\nQueue has 32 : "+q.Search(32));
}
}