-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
75 lines (58 loc) · 1.73 KB
/
main.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <stdio.h>
#include "libs/data_structures/vector/vector.h"
#include "tests/vectorTests.c"
#include "libs/data_structures/vector/vectorVoid.h"
void test();
void manualTest_pushBackV_getVectorValueV_emptyVectorVoid_BaseTypeInt();
void manualTest_pushBackV_getVectorValueV_emptyVectorVoid_BaseTypeFloat();
int main() {
test();
int capacity;
printf("Enter wish capacity of vector: ");
scanf("%d", &capacity);
vector vector = createVector(capacity);
printVector(&vector);
// manualTest_pushBackV_getVectorValueV_emptyVectorVoid_BaseTypeInt();
// manualTest_pushBackV_getVectorValueV_emptyVectorVoid_BaseTypeFloat();
return 0;
}
void manualTest_pushBackV_getVectorValueV_emptyVectorVoid_BaseTypeFloat() {
size_t n;
scanf("%zd", &n);
vectorVoid v = createVectorV(0, sizeof(float));
for (int i = 0; i < n; i++) {
float x;
scanf("%f", &x);
pushBackV(&v, &x);
}
for (int i = 0; i < n; i++) {
float x;
getVectorValueV(&v, i, &x);
printf("%f ", x);
}
}
void manualTest_pushBackV_getVectorValueV_emptyVectorVoid_BaseTypeInt() {
size_t n;
scanf("%zd", &n);
vectorVoid v = createVectorV(0, sizeof(int));
for (int i = 0; i < n; i++) {
int x;
scanf("%d", &x);
pushBackV(&v, &x);
}
for (int i = 0; i < n; i++) {
int x;
getVectorValueV(&v, i, &x);
printf("%d ", x);
}
}
void test() {
test_pushBack_emptyVectorWithNullData();
test_pushBack_emptyVector();
test_pushBack_fullVector();
test_popBack_notEmptyVector();
test_atVector_notEmptyVector();
test_atVector_requestToLastElement();
test_back_oneElementInVector();
test_front_oneElementInVector();
}