-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptimummemoryarray.rb
77 lines (66 loc) · 964 Bytes
/
optimummemoryarray.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
76
77
class OptimumMemoryArray < Object
def initialize
@data = Array.new(0)
end
def shift(*num)
if num != [] then
shifted = []
num[0].times do
shifted << shift
end
return shifted
end
datum = @data[0]
val=0
while val < size
@data[val] = @data[val+1]
val += 1
end
@data.delete_at(size-1)
return datum
end
def unshift val
c = size-1
while c > 0
@data[c+1] = @data[c]
c =- 1
end
@data[0] = val
return @data
end
def pop
datum = @data[size-1]
@data.delete_at(size-1)
return datum
end
def push val
@data[size]=val
return @data
end
def concat other_array
s = other_array.size
puts s
count = 0
while count < s do
@data << other_array.shift
count += 1
end
return OptimumMemoryArray.new.load(@data)
end
def size
@data.size
end
def [](x)
@data[x]
end
def first
@data.first
end
def last
@data.last
end
def load(array)
@data = array
return self
end
end