-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCircularQueue_Array.cs
More file actions
82 lines (65 loc) · 1.62 KB
/
CircularQueue_Array.cs
File metadata and controls
82 lines (65 loc) · 1.62 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
using System;
namespace CSharp.DS.Queue
{
/// <summary>
/// Circular Queue implementation using an Array
/// </summary>
/// <typeparam name="T"></typeparam>
public class CircularQueue_Array<T>
{
private readonly T[] _list;
private readonly int _capacity;
private int _head;
private int _tail;
public CircularQueue_Array(int capacity)
{
_list = new T[capacity];
_capacity = capacity;
_head = -1;
_tail = -1;
}
public bool Enqueue(T value)
{
if (IsFull())
return false;
if (IsEmpty())
_head = 0;
_tail = (_tail + 1) % _capacity;
_list[_tail] = value;
return true;
}
public bool Dequeue()
{
if (IsEmpty())
return false;
if (_head == _tail)
{
_head = -1;
_tail = -1;
return true;
}
_head = (_head + 1) % _capacity;
return true;
}
public T Front()
{
if (IsEmpty())
throw new Exception("Queue is empty");
return _list[_head];
}
public T Rear()
{
if (IsEmpty())
throw new Exception("Queue is empty");
return _list[_tail];
}
public bool IsEmpty()
{
return _head == -1;
}
public bool IsFull()
{
return ((_tail + 1) % _capacity) == _head;
}
}
}