-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathStack.m
49 lines (33 loc) · 979 Bytes
/
Stack.m
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
classdef Stack < handle
properties
stack
head
end
methods
function obj = Stack(data, capacity)
obj.stack = repmat({data}, capacity, 1);
obj.head = uint32(1);
end
function push(obj, data)
if obj.head <= numel(obj.stack)
obj.stack{obj.head} = data;
obj.head = obj.head + 1;
end
end
function data = pop(obj)
if obj.head > 1
obj.head = obj.head - 1;
end
data = obj.stack{obj.head};
end
function data = peek(obj)
data = obj.stack{max(obj.head - 1, 1)};
end
function clear(obj)
obj.head = uint32(1);
end
function e = isempty(obj)
e = obj.head <= 1;
end
end
end