aboutsummaryrefslogtreecommitdiff
path: root/src/stack.zig
blob: 41f7415c568dfebbdba4b446488bd53b12cb6cba (plain)
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
78
79
80
81
82
83
84
85
const std = @import("std");
const vector = std.meta.Vector(2, u64);

pub const Stack = struct {
    data: std.ArrayList(u64),
    pub fn clear(self: *Stack) void {
        self.data.clearRetainingCapacity();
    }
    pub fn deinit(self: *Stack) void {
        self.data.deinit();
    }
    pub fn duplicate(self: *Stack) !void {
        if (self.data.items.len > 0) {
            try self.push(self.data.items[self.data.items.len - 1]);
        }
    }
    pub fn init(comptime allocator: std.mem.Allocator) Stack {
        return Stack{
            .data = std.ArrayList(u64).init(allocator),
        };
    }
    pub fn pop(self: *Stack) u64 {
        return if (self.data.popOrNull()) |v| v else 0;
    }
    pub fn popVector(self: *Stack) [2]u64 {
        const b = if (self.data.popOrNull()) |v| v else 0;
        const a = if (self.data.popOrNull()) |v| v else 0;
        return [2]u64{ a, b };
    }
    pub fn push(self: *Stack, n: u64) !void {
        try self.data.append(n);
    }
    pub fn pushVector(self: *Stack, v: [2]u64) !void {
        try self.data.appendSlice(v[0..2]);
    }
    pub fn swap(self: *Stack) !void {
        const v = self.popVector();
        try self.pushVector([2]u64{ v[1], v[0] });
    }
};

test "clear" {
    var s = Stack.init(std.testing.allocator);
    defer s.deinit();
    s.clear();
    try std.testing.expect(s.pop() == 0);
    try s.pushVector([2]u64{ 1, 2 });
    s.clear();
    try std.testing.expect(s.pop() == 0);
}
test "duplicate" {
    var s = Stack.init(std.testing.allocator);
    defer s.deinit();
    try s.duplicate();
    try std.testing.expectEqual(s.popVector(), @as(vector, [2]u64{ 0, 0 }));
    try s.pushVector([2]u64{ 1, 2 });
    try s.duplicate();
    try s.duplicate();
    try std.testing.expectEqual(s.popVector(), @as(vector, [2]u64{ 2, 2 }));
    try std.testing.expectEqual(s.popVector(), @as(vector, [2]u64{ 1, 2 }));
}
test "push and pop" {
    var s = Stack.init(std.testing.allocator);
    defer s.deinit();
    try std.testing.expect(s.pop() == 0);
    try std.testing.expectEqual(s.popVector(), @as(vector, [2]u64{ 0, 0 }));
    try s.push(1);
    try std.testing.expect(s.pop() == 1);
    try std.testing.expect(s.pop() == 0);
    try s.pushVector([2]u64{ 2, 3 });
    try std.testing.expect(s.pop() == 3);
    try std.testing.expectEqual(s.popVector(), @as(vector, [2]u64{ 0, 2 }));
}
test "swap" {
    var s = Stack.init(std.testing.allocator);
    defer s.deinit();
    try s.swap();
    try std.testing.expectEqual(s.popVector(), @as(vector, [2]u64{ 0, 0 }));
    try s.push(1);
    try s.swap();
    try std.testing.expectEqual(s.popVector(), @as(vector, [2]u64{ 1, 0 }));
    try s.push(2);
    try s.swap();
    try std.testing.expectEqual(s.popVector(), @as(vector, [2]u64{ 2, 0 }));
}