-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDynamicArrayInC.c
More file actions
83 lines (64 loc) · 2.28 KB
/
DynamicArrayInC.c
File metadata and controls
83 lines (64 loc) · 2.28 KB
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
// Question link - https://www.hackerrank.com/challenges/dynamic-array-in-c/problem?isFullScreen=true
#include <stdio.h>
#include <stdlib.h>
/*
* This stores the total number of books in each shelf.
*/
int* total_number_of_books;
/*
* This stores the total number of pages in each book of each shelf.
* The rows represent the shelves and the columns represent the books.
*/
int** total_number_of_pages;
int main()
{
int total_number_of_shelves;
scanf("%d", &total_number_of_shelves);
total_number_of_books = calloc(total_number_of_shelves,sizeof(int));
int total_number_of_queries;
scanf("%d", &total_number_of_queries);
total_number_of_pages = malloc(total_number_of_shelves*sizeof(int *));
for(int i = 0 ; i < total_number_of_shelves ; i++){
total_number_of_books[i] = 0;
total_number_of_pages[i] = NULL;
}
while (total_number_of_queries--) {
int type_of_query;
scanf("%d", &type_of_query);
if (type_of_query == 1) {
/*
* Process the query of first type here.
*/
int shelf , pages;
scanf("%d %d", &shelf, &pages);
total_number_of_books[shelf]++;
if(total_number_of_books[shelf] == 1) {
total_number_of_pages[shelf] = malloc(sizeof(int));
}else {
total_number_of_pages[shelf] = realloc(total_number_of_pages[shelf],
total_number_of_books[shelf]*sizeof(int));
}
total_number_of_pages[shelf][total_number_of_books[shelf] - 1] = pages;
} else if (type_of_query == 2) {
int x, y;
scanf("%d %d", &x, &y);
printf("%d\n", *(*(total_number_of_pages + x) + y));
} else {
int x;
scanf("%d", &x);
printf("%d\n", *(total_number_of_books + x));
}
}
if (total_number_of_books) {
free(total_number_of_books);
}
for (int i = 0; i < total_number_of_shelves; i++) {
if (*(total_number_of_pages + i)) {
free(*(total_number_of_pages + i));
}
}
if (total_number_of_pages) {
free(total_number_of_pages);
}
return 0;
}