-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArray.rb
44 lines (40 loc) · 970 Bytes
/
Array.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
require_relative "Evento"
#agregamos un metodo a la clase Array para insertar los eventos en orden
class Array
def insertar_evento_en_orden(evento)
pos=self.size
each_with_index do |v, i|
if v.tiempo > evento.tiempo
pos=i
break
end
end
insert(pos,evento)
end
def tamano_en_tiempo(tiempo)
tamano = 0
self.each_with_index do |evento, index|
if evento.tiempo >= tiempo
tamano = self.size-index
break
end
end
tamano
end
def primero_despues_de_tiempo(tiempo)
l = 0
u = self.size
while l<u
m = l+(u-l)/2
if m > l and self[m-1].tiempo == tiempo and self[m].tiempo > tiempo
return self[m]
elsif self[m].tiempo > tiempo
u = m
elsif self[m].tiempo <= tiempo
l = m+1
end
end
return self[l] if l < self.size and l >= 0 and l == u and self[l].tiempo > tiempo
return Evento.new(0,0,0)
end
end