blob: afe99de9c264f460c0094daeafc3d47bea453abf (
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
|
#include "vector.h"
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <stdio.h>
#define START_SIZE 64;
struct vector {
void **base;
int end, limit;
};
vec* vec_new()
{
vec *root;
root = malloc(sizeof(vec));
assert(root);
root->limit = START_SIZE;
root->base = malloc(root->limit * sizeof(void*));
assert(root->base);
return root;
}
vec* vec_with_capacity(n)
int n;
{
vec *root;
root = malloc(sizeof(vec));
assert(root);
root->limit = n;
root->base = malloc(root->limit * sizeof(void*));
assert(root->base);
return root;
}
int vec_size(root)
vec *root;
{
if (!root) {
return -1;
}
return root->end;
}
void vec_resize(root)
vec *root;
{
if (!root)
return;
root->base = reallocarray(root->base, root->limit * 2, sizeof(void*));
assert(root->base);
}
void vec_push(root, item)
vec *root;
void *item;
{
if (!root) {
return;
}
if (root->end >= root->limit) {
vec_resize(root);
}
root->base[root->end++] = item;
}
|