forked from HarshCasper/NeoAlgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stock_Span.c
100 lines (86 loc) · 1.52 KB
/
Stock_Span.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// Stock Span Problem
// Given a list of prices of a stock for N number of days, find stock span for each day.
// link to problem: https://practice.geeksforgeeks.org/problems/stock-span-problem/
#include<stdio.h>
#define MAXSIZE 50
int stack[MAXSIZE];
int top = -1;
int isempty() {
if (top == -1)
return 1;
else
return 0;
}
int isfull() {
if (top == MAXSIZE)
return 1;
else
return 0;
}
int peek() {
return stack[top];
}
int pop() {
int data;
if (!isempty()) {
data = stack[top];
top = top - 1;
return data;
} else {
printf("Stack is empty.\n");
}
}
void push(int data) {
if (!isfull()) {
top = top + 1;
stack[top] = data;
} else {
printf("Stack is full.\n");
}
}
void calcSpan(int arr[], int days) {
int i, span[days];
if (days == 0)
return;
// initialization
span[0] = 1;
push(0);
for (i = 1; i < days; i++) {
// checking if previous stock prize is less
while (!isempty() && arr[i] > arr[peek()])
pop();
// updating the span value
if (isempty()) {
span[i] = i + 1;
} else {
span[i] = i - peek();
}
push(i);
}
// printing the span
for (i = 0; i < days; i++)
printf("%d ", span[i]);
printf("\n");
}
int main() {
int n;
printf("Enter the no. of days: \n");
scanf("%d", &n);
printf("Enter the stock prizes: \n");
int arr[n];
for (int i = 0; i < n; i++)
scanf("%d", &arr[i]);
calcSpan(arr, n);
return 0;
}
/*
Input:
Enter the no. of days:
5
Enter the stock prizes:
30 20 40 50 60
Output:
1 1 3 4 5
Time complexity: O(n)
Space complexity: O(n)
*/