-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterviewcake.rb
77 lines (63 loc) · 1.32 KB
/
interviewcake.rb
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
require 'debugger'
# ==================
class Array
def my_reverse
(0..self.length/2 - 1).each do |index|
self[index], self[-index - 1] = self[-index - 1], self[index]
end
self
end
end
# ==================
class Stack
attr_reader :largest
attr_accessor :history
def initialize(num)
@history = [num]
@largest = [num]
end
def add(num)
history << num
set_largest
end
def remove
removed = history.pop
if removed == largest.last
largest.pop
end
end
def top
history.last
end
def set_largest
if top >= largest.last
largest << top
end
end
def get_largest
largest.last
end
end
# ==================
class Queue
attr_accessor :stack1, :stack2
def initialize(num)
@stack1 = Stack.new(num)
@stack2 = Stack.new(nil)
end
def enqueue(num)
self.stack1.add(num)
return stack1.top
end
def dequeue
if self.stack2.history == [nil]
@stack2 = Stack.new(stack1.top)
self.stack2.history = Array.new(stack1.history.length)
end
(0..(self.stack1.history.length - 1)).each do |index|
self.stack1.history[index], self.stack2.history[-index - 1] = self.stack2.history[-index - 1], self.stack1.history[index]
end
self.stack1, self.stack2 = self.stack2, self.stack1
return self.stack1.top
end
end