-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharray_queue.rb
More file actions
67 lines (52 loc) · 976 Bytes
/
array_queue.rb
File metadata and controls
67 lines (52 loc) · 976 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# naive Queue implementation using an array. (Linear time complexity)
class NaiveArrayQueue
def initialize
@queue_arr = []
end
def enqueue(el)
queue_arr.push(el)
el
end
def dequeue
queue_arr.shift
end
def first
queue_arr.first
end
def is_empty
queue_arr.empty?
end
private
attr_reader :queue_arr
end
# clever Queue implementation using an array. Constant time complexity (amortized)
class StackQueue
def initialize
@queue_arr1 = []
@queue_arr2 = []
end
def enqueue(el)
queue_arr1.push(el)
el
end
def dequeue
if queue_arr2.empty?
queue_arr2.push(queue_arr1.pop) until queue_arr1.empty?
end
queue_arr2.pop
end
def first
if queue_arr2.length
queue_arr2.last
elsif queue_arr1.length
queue_arr1.first
else
[]
end
end
def is_empty
queue_arr1.empty? && queue_arr2.empty?
end
private
attr_reader :queue_arr1, :queue_arr2
end