forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.c
33 lines (28 loc) · 776 Bytes
/
Solution.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
typedef struct {
int* count;
} ParkingSystem;
ParkingSystem* parkingSystemCreate(int big, int medium, int small) {
ParkingSystem* res = malloc(sizeof(ParkingSystem));
res->count = malloc(sizeof(int) * 3);
res->count[0] = big;
res->count[1] = medium;
res->count[2] = small;
return res;
}
bool parkingSystemAddCar(ParkingSystem* obj, int carType) {
int i = carType - 1;
if (!obj->count[i]) {
return 0;
}
obj->count[i]--;
return 1;
}
void parkingSystemFree(ParkingSystem* obj) {
free(obj);
}
/**
* Your ParkingSystem struct will be instantiated and called as such:
* ParkingSystem* obj = parkingSystemCreate(big, medium, small);
* bool param_1 = parkingSystemAddCar(obj, carType);
* parkingSystemFree(obj);
*/