forked from eteran/c-vector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.c
61 lines (50 loc) · 1.66 KB
/
example.c
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
/* if this is defined, then the vector will double in capacity each
* time it runs out of space. if it is not defined, then the vector will
* be conservative, and will have a capcity no larger than necessary.
* having this defined will minimize how often realloc gets called.
*/
#define CVECTOR_LOGARITHMIC_GROWTH
#include "cvector.h"
#include <stdio.h>
int main(int argc, char *argv[]) {
/* this is the variable that will store the array, you can have
* a vector of any type! For example, you may write float *v = NULL,
* and you'd have a vector of floats :-). NULL will have a size
* and capacity of 0. additionally, vector_begin and vector_end will
* return NULL on a NULL vector. Alternatively, for clarity of writing
* use can use the cvector_vector_type macro to define a vector of a
* given type.
*/
cvector_vector_type(int) v = NULL;
(void)argc;
(void)argv;
/* add some elements to the back */
cvector_push_back(v, 10);
cvector_push_back(v, 20);
cvector_push_back(v, 30);
/* and remove one too */
cvector_pop_back(v);
/* print out some stats about the vector */
printf("pointer : %p\n", (void *)v);
printf("capacity: %lu\n", cvector_capacity(v));
printf("size : %lu\n", cvector_size(v));
/* iterator over the vector using "iterator" style */
if (v) {
int *it;
int i = 0;
for (it = cvector_begin(v); it != cvector_end(v); ++it) {
printf("v[%d] = %d\n", i, *it);
++i;
}
}
/* iterator over the vector standard indexing too! */
if (v) {
size_t i;
for (i = 0; i < cvector_size(v); ++i) {
printf("v[%lu] = %d\n", i, v[i]);
}
}
/* well, we don't have destructors, so let's clean things up */
cvector_free(v);
return 0;
}