-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
0739-daily-temperatures.c
39 lines (29 loc) · 1.08 KB
/
0739-daily-temperatures.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
/*
Given an array of temperatures, find the number of days after which the
temperature becomes more than temperature of that day.
Ex. temperatures = [73,74,75,71,69,72,76,73] -> [1,1,4,2,1,1,0,0]
Time: O(N)
Space: O(1)
*/
/**
* Note: The returned array must be malloced, assume caller calls free().
*/
int* dailyTemperatures(int* temperatures, int temperaturesSize, int* returnSize){
*returnSize = temperaturesSize;
int* result = (int*) malloc(sizeof(int)*temperaturesSize);
// Initialize result array to zero
for (int i = 0; i < temperaturesSize; ++i) result[i] = 0;
for (int i = temperaturesSize-1; i >= 0; --i) {
int j = i + 1;
while (j < temperaturesSize && temperatures[j] <= temperatures[i]) {
if (result[j] <= 0)
break;
j += result[j];
}
// If a day with higher temperature found, update result for that index
if (j < temperaturesSize && temperatures[j] > temperatures[i]) {
result[i] = j - i;
}
}
return result;
}